Created
June 10, 2021 02:01
-
-
Save jengo/31b8dc630fd4bd1e8e3bc975a596703b to your computer and use it in GitHub Desktop.
Deploy cert-manager using ArgoCD
This file contains 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
# This manifest written by Jolene Engo <[email protected]> | |
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: installCRDs | |
value: "true" | |
repoURL: https://charts.jetstack.io | |
targetRevision: v1.3.1 | |
syncPolicy: | |
automated: {} | |
syncOptions: | |
- CreateNamespace=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment