github.com/argoproj/argo-cd/v2@v2.10.9/resource_customizations/argoproj.io/ApplicationSet/testdata/noStatusApplicationSet.yaml (about) 1 apiVersion: argoproj.io/v1alpha1 2 kind: ApplicationSet 3 metadata: 4 name: cluster-git 5 namespace: argocd 6 spec: 7 generators: 8 - merge: 9 generators: 10 - clusters: 11 values: 12 kafka: "true" 13 redis: "false" 14 - clusters: 15 selector: 16 matchLabels: 17 use-kafka: "false" 18 values: 19 kafka: "false" 20 - list: 21 elements: 22 - name: minikube 23 values.redis: "true" 24 mergeKeys: 25 - name 26 template: 27 metadata: 28 name: '{{name}}' 29 spec: 30 destination: 31 namespace: default 32 server: '{{server}}' 33 project: default 34 source: 35 helm: 36 parameters: 37 - name: kafka 38 value: '{{values.kafka}}' 39 - name: redis 40 value: '{{values.redis}}' 41 path: helm-guestbook 42 repoURL: https://github.com/argoproj/argocd-example-apps/ 43 targetRevision: HEAD