24 lines
		
	
	
		
			541 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			541 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: argoproj.io/v1alpha1
 | 
						|
kind: Application
 | 
						|
metadata:
 | 
						|
  name: passwords-application
 | 
						|
  namespace: argocd
 | 
						|
spec:
 | 
						|
  project: infrastructure
 | 
						|
  source:
 | 
						|
    repoURL: git@github.com:moll-re/bootstrap-k3s-infra.git
 | 
						|
    targetRevision: main
 | 
						|
    path: infrastructure/passwords
 | 
						|
  destination:
 | 
						|
    server: https://kubernetes.default.svc
 | 
						|
    namespace: passwords
 | 
						|
  syncPolicy:
 | 
						|
    automated:
 | 
						|
      prune: true
 | 
						|
      selfHeal: true
 | 
						|
  ignoreDifferences:
 | 
						|
    - group: apps/v1
 | 
						|
      kind: Deployment
 | 
						|
      jsonPointers:
 | 
						|
        - /metadata/annotations
 |