forked from devopsparadox/argo-combined-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apps.yaml
48 lines (44 loc) · 972 Bytes
/
apps.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
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: production
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: production
source:
repoURL: https://github.com/devopsparadox/argo-combined-demo.git
targetRevision: HEAD
path: production
destination:
server: https://kubernetes.default.svc
namespace: production
syncPolicy:
automated:
selfHeal: true
prune: true
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: staging
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: staging
source:
repoURL: https://github.com/devopsparadox/argo-combined-demo.git
targetRevision: HEAD
path: staging
destination:
server: https://kubernetes.default.svc
namespace: staging
syncPolicy:
automated:
selfHeal: true
prune: true
syncOptions:
- CreateNamespace=true