-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapplication-set.yaml
64 lines (63 loc) · 1.88 KB
/
application-set.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
apiVersion: argoproj.io/v1alpha1
kind: ApplicationSet
metadata:
name: apps
namespace: argocd-system
spec:
generators:
- git:
repoURL: https://github.com/eyulf/homelab.git
revision: main
files:
- path: "kubernetes/apps/**/application-secrets.json"
- git:
repoURL: https://github.com/eyulf/homelab.git
revision: main
files:
- path: "kubernetes/apps/**/application-config.json"
template:
metadata:
name: '{{ name }}'
annotations:
argocd.argoproj.io/manifest-generate-paths: '/{{ folderPath }}'
spec:
project: default
source:
repoURL: https://github.com/eyulf/homelab.git
targetRevision: main
helm:
valueFiles:
- 'values.yaml'
destination:
server: https://kubernetes.default.svc
namespace: '{{ namespace }}'
syncPolicy:
automated: {}
syncOptions:
- CreateNamespace=true
- git:
repoURL: https://github.com/eyulf/homelab.git
revision: main
files:
- path: "kubernetes/apps/**/application-objects.json"
template:
metadata:
name: '{{ name }}'
annotations:
argocd.argoproj.io/manifest-generate-paths: '/{{ folderPath }}'
spec:
project: default
source:
repoURL: https://github.com/eyulf/homelab.git
targetRevision: main
path: '{{ folderPath }}'
destination:
server: https://kubernetes.default.svc
namespace: '{{ namespace }}'
syncPolicy:
automated: {}
syncOptions:
- CreateNamespace=true
# checkov:skip=CKV_ARGO_1:Skipping until this can be checked in detail
# checkov:skip=CKV_ARGO_2:Skipping until this can be checked in detail