From 7c75ec25ce892e50268864142f0962596d49ca32 Mon Sep 17 00:00:00 2001 From: Josh Newsome <50967636+jnewsome97@users.noreply.github.com> Date: Wed, 29 Nov 2023 12:07:21 +0000 Subject: [PATCH] Helm Update - add custom yaml files --- .../ROOT/examples/bgd-app-helm-custom.yaml | 22 +++++++++++++ .../ROOT/examples/bgd-app-helm-para.yaml | 31 +++++++++++++++++++ .../modules/ROOT/examples/bgd-app-helm.yaml | 19 ++++++++++++ 3 files changed, 72 insertions(+) create mode 100644 documentation/modules/ROOT/examples/bgd-app-helm-custom.yaml create mode 100644 documentation/modules/ROOT/examples/bgd-app-helm-para.yaml create mode 100644 documentation/modules/ROOT/examples/bgd-app-helm.yaml diff --git a/documentation/modules/ROOT/examples/bgd-app-helm-custom.yaml b/documentation/modules/ROOT/examples/bgd-app-helm-custom.yaml new file mode 100644 index 0000000..ff6ed08 --- /dev/null +++ b/documentation/modules/ROOT/examples/bgd-app-helm-custom.yaml @@ -0,0 +1,22 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: bgd-helm +spec: + destination: + name: '' + namespace: user1-bgd + server: 'https://kubernetes.default.svc' + source: + path: documentation/modules/ROOT/examples/bgd-helm-chart + repoURL: 'https://github.com/jnewsome97/openshift-gitops-workshop' + targetRevision: master + helm: + valueFiles: + - custom_values_1/values.yaml + sources: [] + project: default + syncPolicy: + automated: + prune: true + selfHeal: true diff --git a/documentation/modules/ROOT/examples/bgd-app-helm-para.yaml b/documentation/modules/ROOT/examples/bgd-app-helm-para.yaml new file mode 100644 index 0000000..1104038 --- /dev/null +++ b/documentation/modules/ROOT/examples/bgd-app-helm-para.yaml @@ -0,0 +1,31 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: bgd-helm +spec: + destination: + name: '' + namespace: user1-bgd + server: 'https://kubernetes.default.svc' + source: + path: documentation/modules/ROOT/examples/bgd-helm-chart + repoURL: 'https://github.com/jnewsome97/openshift-gitops-workshop' + targetRevision: master + helm: + parameters: + - name: color + value: purple + - name: image.name + value: quay.io/rhdevelopers/bgd + - name: image.pullPolicy + value: IfNotPresent + - name: image.tag + value: 1.0.0 + - name: replicas + value: '1' + sources: [] + project: default + syncPolicy: + automated: + prune: true + selfHeal: true diff --git a/documentation/modules/ROOT/examples/bgd-app-helm.yaml b/documentation/modules/ROOT/examples/bgd-app-helm.yaml new file mode 100644 index 0000000..3fa466b --- /dev/null +++ b/documentation/modules/ROOT/examples/bgd-app-helm.yaml @@ -0,0 +1,19 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: bgd-helm +spec: + destination: + name: '' + namespace: user1-bgd + server: 'https://kubernetes.default.svc' + source: + path: documentation/modules/ROOT/examples/bgd-helm-chart + repoURL: 'https://github.com/jnewsome97/openshift-gitops-workshop' + targetRevision: master + sources: [] + project: default + syncPolicy: + automated: + prune: true + selfHeal: true