diff --git a/apps/templates/test-folder.yaml b/apps/templates/test-folder.yaml new file mode 100644 index 0000000..4dade0d --- /dev/null +++ b/apps/templates/test-folder.yaml @@ -0,0 +1,33 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: simple-helm + namespace: argocd +spec: + destination: + name: '' + namespace: default + server: https://kubernetes.default.svc + project: default + source: + path: simple-with-envs # (1) + repoURL: https://github.com/piomin/sample-generic-helm-charts.git + targetRevision: HEAD + plugin: # (2) + env: + - name: HELM_VALUES # (3) + value: | + image: + registry: quay.io + repository: pminkows/sample-kotlin-spring + tag: "1.4.30" + + app: + name: sample-spring-boot-kotlin + replicas: 1 + ports: + - name: http + value: 8080 + envs: + - name: PASS + value: # (4) \ No newline at end of file