22 lines
		
	
	
	
		
			475 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			475 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: argoproj.io/v1alpha1
 | |
| kind: Application
 | |
| metadata:
 | |
|   name: app-of-apps
 | |
|   namespace: argocd
 | |
|   annotations:
 | |
|     argocd.argoproj.io/sync-wave: "-1"
 | |
| spec:
 | |
|   project: cd
 | |
|   syncPolicy:
 | |
|     automated:
 | |
|       prune: true
 | |
|       selfHeal: true
 | |
|   source:
 | |
|     path: apps/
 | |
|     directory:
 | |
|       recurse: true
 | |
|     repoURL: git@gitlab.mareshq.com:hq/cthulhunetes/gitops.git
 | |
|     targetRevision: HEAD
 | |
|   destination:
 | |
|     server: "https://kubernetes.default.svc"
 | |
|     namespace: default
 |