-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroot_app.yaml
37 lines (34 loc) · 1.06 KB
/
root_app.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
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: 01-test-root
namespace: argocd
annotations:
argocd.argoproj.io/compare-options: >-
ServerSideDiff=true,
IncludeMutationWebhook=true
spec:
project: default
sources:
# This app itself
- repoURL: [email protected]:graysievert-lab/experiment-k8s-bootstrapping-applicationset-generator-git-file.git
targetRevision: HEAD
path: "."
# applicationsets
- repoURL: [email protected]:graysievert-lab/experiment-k8s-bootstrapping-applicationset-generator-git-file.git
targetRevision: HEAD
path: "appsets"
destination:
server: https://kubernetes.default.svc
namespace: argocd
syncPolicy:
automated:
prune: true
selfHeal: true
allowEmpty: false
syncOptions:
- PrunePropagationPolicy=orphan # Supported policies are background, foreground and orphan.
- ApplyOutOfSyncOnly=true # Only sync out-of-sync resources, rather than applying every object in the application
- ServerSideApply=true
retry:
limit: -1