forked from mocdaniel/gitops-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonitoring-appset.yaml
40 lines (40 loc) · 1.04 KB
/
monitoring-appset.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
apiVersion: argoproj.io/v1alpha1
kind: ApplicationSet
metadata:
name: monitoring-appset
namespace: argocd
spec:
generators:
- matrix:
generators:
- list:
elements:
- team: team-green
namespace: team-green-mon
- team: team-blue
namespace: blue-monitoring
- git:
directories:
- path: monitoring-appset/*
repoURL: https://github.com/mocdaniel/gitops-examples
revision: HEAD
goTemplate: true
template:
metadata:
name: "{{ .team }}-{{ .path.basename }}"
spec:
project: team-monitoring
source:
repoURL: https://github.com/mocdaniel/gitops-examples
targetRevision: HEAD
path: "{{ .path.path }}"
helm:
valueFiles:
- values.yaml
destination:
name: in-cluster
namespace: "{{ .namespace }}" # this is dangerous!
syncPolicy:
syncOptions:
- CreateNamespace=true