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