29 lines
697 B
YAML
29 lines
697 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: ApplicationSet
|
|
metadata:
|
|
name: badhouseplants-net
|
|
namespace: argo-system
|
|
spec:
|
|
template:
|
|
metadata:
|
|
name: "{{ app }}-{{ name }}"
|
|
namespace: argo-system
|
|
labels:
|
|
branch: "{{ branch }}"
|
|
application: "{{ app }}"
|
|
commit_sha: "{{ commit_sha }}"
|
|
spec:
|
|
project: "default"
|
|
source:
|
|
helm:
|
|
valueFiles:
|
|
- values.yaml
|
|
values: "{{ value }}"
|
|
repoURL: "{{ repo_url }}"
|
|
targetRevision: "{{ chart_version }}"
|
|
chart: badhouseplants-net
|
|
destination:
|
|
server: "https://kubernetes.default.svc"
|
|
namespace: "{{ app }}-{{ name }}"
|
|
|