add cert-manager
This commit is contained in:
parent
393ef02472
commit
6d06d62bbe
37
argo1/templates/cert-manager.yaml
Normal file
37
argo1/templates/cert-manager.yaml
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
# {{ if (index .Values "cert-manager").enabled }}
|
||||||
|
---
|
||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: "{{ .Release.Name }}-cert-manager"
|
||||||
|
namespace: argocd
|
||||||
|
finalizers:
|
||||||
|
- resources-finalizer.argocd.argoproj.io
|
||||||
|
spec:
|
||||||
|
project: default
|
||||||
|
source:
|
||||||
|
chart: "cert-manager"
|
||||||
|
repoURL: "https://charts.jetstack.io"
|
||||||
|
targetRevision: "v1.11.0"
|
||||||
|
helm:
|
||||||
|
values: |-
|
||||||
|
{{ (index .Values "cert-manager").values | nindent 8 }}
|
||||||
|
# the next line preserves the release name.
|
||||||
|
# this is optional but recommended for singleton services.
|
||||||
|
releaseName: "cert-manager"
|
||||||
|
destination:
|
||||||
|
server: "https://kubernetes.default.svc"
|
||||||
|
namespace: "cert-manager"
|
||||||
|
syncPolicy:
|
||||||
|
automated:
|
||||||
|
prune: true
|
||||||
|
selfHeal: true
|
||||||
|
syncOptions:
|
||||||
|
- CreateNamespace=true
|
||||||
|
retry:
|
||||||
|
limit: 10
|
||||||
|
backoff:
|
||||||
|
duration: 5s
|
||||||
|
factor: 2
|
||||||
|
maxDuration: 3m0s
|
||||||
|
# {{- end }}
|
|
@ -3,6 +3,11 @@ bootstrap:
|
||||||
repoURL: "https://set.to.your.fork/of/this"
|
repoURL: "https://set.to.your.fork/of/this"
|
||||||
targetRevision: "main"
|
targetRevision: "main"
|
||||||
|
|
||||||
|
cert-manager:
|
||||||
|
enabled: true
|
||||||
|
values: |
|
||||||
|
installCRDs: "true"
|
||||||
|
|
||||||
haproxy-ingress:
|
haproxy-ingress:
|
||||||
enabled: false
|
enabled: false
|
||||||
values: |
|
values: |
|
||||||
|
|
Loading…
Reference in New Issue
Block a user