41 lines
		
	
	
	
		
			943 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			943 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: argoproj.io/v1alpha1
 | |
| kind: Application
 | |
| metadata:
 | |
|   name: cert-manager
 | |
|   namespace: argocd
 | |
|   annotations:
 | |
|     argocd.argoproj.io/sync-wave: "5"
 | |
| spec:
 | |
|   project: system
 | |
|   syncPolicy:
 | |
|     automated:
 | |
|       prune: true
 | |
|       selfHeal: true
 | |
|   destination:
 | |
|     server: "https://kubernetes.default.svc"
 | |
|     namespace: cert-manager
 | |
|   source:
 | |
|     chart: cert-manager
 | |
|     repoURL: https://charts.jetstack.io
 | |
|     targetRevision: 1.15.0
 | |
|     helm:
 | |
|       releaseName: cert-manager
 | |
|       valuesObject:
 | |
|         installCRDs: true
 | |
|         strategy:
 | |
|           type: RollingUpdate
 | |
|           rollingUpdate:
 | |
|             maxSurge: 1
 | |
|             maxUnavailable: 0
 | |
|         webhook:
 | |
|           strategy:
 | |
|             type: RollingUpdate
 | |
|             rollingUpdate:
 | |
|               maxSurge: 1
 | |
|               maxUnavailable: 0
 | |
|         podDnsPolicy: None
 | |
|         podDnsConfig:
 | |
|           nameservers:
 | |
|             - 1.1.1.1
 | |
|             - 1.0.0.1
 | |
|             - 8.8.8.8
 |