Last active
December 21, 2025 22:49
-
-
Save jengo/90d5f2726435008d1e015f4102fc90b6 to your computer and use it in GitHub Desktop.
cert-manager deploy to ArgoCD via Application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: argoproj.io/v1alpha1 | |
| kind: Application | |
| metadata: | |
| name: cert-manager | |
| namespace: argocd | |
| spec: | |
| destination: | |
| namespace: cert-manager | |
| server: https://kubernetes.default.svc | |
| project: infrastructure | |
| source: | |
| chart: cert-manager | |
| helm: | |
| parameters: | |
| - name: prometheus.servicemonitor.enabled | |
| value: "true" | |
| values: |- | |
| config: | |
| apiVersion: controller.config.cert-manager.io/v1alpha1 | |
| kind: ControllerConfiguration | |
| enableGatewayAPI: true | |
| repoURL: https://charts.jetstack.io | |
| targetRevision: v1.*.* | |
| syncPolicy: | |
| automated: | |
| enabled: true | |
| selfHeal: true | |
| syncOptions: | |
| - CreateNamespace=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment