forked from argoproj/argo-helm
Always mount argocd-tls-certs-cm in server and repo-server (#1098)
If the ConfigMap is not mounted Argo will not be able to use any certificates added in the CLI or the UI. Signed-off-by: Otto Nordander otto.nordander@gmail.com Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>main argo-cd-3.34.0
parent
62b5450f17
commit
cbdcd902d7
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v2.2.5
|
appVersion: v2.2.5
|
||||||
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 3.33.8
|
version: 3.34.0
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -21,4 +21,4 @@ dependencies:
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Fixed]: Added repo-server copyutil securityContext"
|
- "[Changed]: Always mount argocd-tls-certs-cm in server and repo-server"
|
||||||
|
|
|
@ -85,10 +85,8 @@ spec:
|
||||||
- mountPath: /app/config/ssh
|
- mountPath: /app/config/ssh
|
||||||
name: ssh-known-hosts
|
name: ssh-known-hosts
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.configs.tlsCerts }}
|
|
||||||
- mountPath: /app/config/tls
|
- mountPath: /app/config/tls
|
||||||
name: tls-certs
|
name: tls-certs
|
||||||
{{- end }}
|
|
||||||
- mountPath: /app/config/reposerver/tls
|
- mountPath: /app/config/reposerver/tls
|
||||||
name: argocd-repo-server-tls
|
name: argocd-repo-server-tls
|
||||||
- mountPath: /tmp
|
- mountPath: /tmp
|
||||||
|
@ -169,11 +167,9 @@ spec:
|
||||||
name: argocd-ssh-known-hosts-cm
|
name: argocd-ssh-known-hosts-cm
|
||||||
name: ssh-known-hosts
|
name: ssh-known-hosts
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.configs.tlsCerts }}
|
|
||||||
- configMap:
|
- configMap:
|
||||||
name: argocd-tls-certs-cm
|
name: argocd-tls-certs-cm
|
||||||
name: tls-certs
|
name: tls-certs
|
||||||
{{- end }}
|
|
||||||
- name: helm-working-dir
|
- name: helm-working-dir
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
- name: argocd-repo-server-tls
|
- name: argocd-repo-server-tls
|
||||||
|
|
|
@ -85,10 +85,8 @@ spec:
|
||||||
- mountPath: /app/config/ssh
|
- mountPath: /app/config/ssh
|
||||||
name: ssh-known-hosts
|
name: ssh-known-hosts
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.configs.tlsCerts }}
|
|
||||||
- mountPath: /app/config/tls
|
- mountPath: /app/config/tls
|
||||||
name: tls-certs
|
name: tls-certs
|
||||||
{{- end }}
|
|
||||||
- mountPath: /app/config/server/tls
|
- mountPath: /app/config/server/tls
|
||||||
name: argocd-repo-server-tls
|
name: argocd-repo-server-tls
|
||||||
{{- if .Values.configs.styles }}
|
{{- if .Values.configs.styles }}
|
||||||
|
@ -204,11 +202,9 @@ spec:
|
||||||
name: argocd-ssh-known-hosts-cm
|
name: argocd-ssh-known-hosts-cm
|
||||||
name: ssh-known-hosts
|
name: ssh-known-hosts
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.configs.tlsCerts }}
|
|
||||||
- configMap:
|
- configMap:
|
||||||
name: argocd-tls-certs-cm
|
name: argocd-tls-certs-cm
|
||||||
name: tls-certs
|
name: tls-certs
|
||||||
{{- end }}
|
|
||||||
- name: argocd-repo-server-tls
|
- name: argocd-repo-server-tls
|
||||||
secret:
|
secret:
|
||||||
items:
|
items:
|
||||||
|
|
Loading…
Reference in New Issue