Merge branch 'main' into prod
This commit is contained in:
commit
fa28404c34
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://git.strudelline.net/infra/argo1"
|
||||
targetRevision: "prod"
|
||||
|
||||
cert-manager:
|
||||
enabled: true
|
||||
values: |
|
||||
installCRDs: "true"
|
||||
|
||||
haproxy-ingress:
|
||||
enabled: true
|
||||
values: |-
|
||||
|
|
Loading…
Reference in New Issue
Block a user