Bumping the Version of the argo-cd helm chart to v2.2.0 (#1055)

Signed-off-by: Cedric Kienzler <github@cedric-kienzler.de>
This commit is contained in:
cedi 2021-12-15 11:15:02 +01:00 committed by GitHub
parent 103914446e
commit 6d872cb02f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 898 additions and 467 deletions

View file

@ -34,6 +34,17 @@ spec:
{{- if .Values.global.securityContext }}
securityContext: {{- toYaml .Values.global.securityContext | nindent 8 }}
{{- end }}
initContainers:
- command:
- cp
- -n
- /usr/local/bin/argocd
- /var/run/argocd/argocd-cmp-server
image: {{ default .Values.global.image.repository .Values.repoServer.image.repository }}:{{ default (include "argo-cd.defaultTag" .) .Values.repoServer.image.tag }}
name: copyutil
volumeMounts:
- mountPath: /var/run/argocd
name: var-files
containers:
- name: {{ .Values.repoServer.name }}
image: {{ default .Values.global.image.repository .Values.repoServer.image.repository }}:{{ default (include "argo-cd.defaultTag" .) .Values.repoServer.image.tag }}
@ -87,6 +98,8 @@ spec:
name: argocd-repo-server-tls
- mountPath: /tmp
name: tmp-dir
- mountPath: /home/argocd/cmp-server/plugins
name: plugins
ports:
- name: repo-server
containerPort: {{ .Values.repoServer.containerPort }}
@ -177,6 +190,10 @@ spec:
secretName: argocd-repo-server-tls
- emptyDir: {}
name: tmp-dir
- emptyDir: {}
name: var-files
- emptyDir: {}
name: plugins
{{- if .Values.repoServer.initContainers }}
initContainers:
{{- toYaml .Values.repoServer.initContainers | nindent 6 }}

View file

@ -98,6 +98,8 @@ spec:
- mountPath: /home/argocd/.aws
name: aws-config
{{- end }}
- mountPath: /home/argocd
name: plugins-home
- mountPath: /tmp
name: tmp-dir
ports:
@ -216,6 +218,8 @@ spec:
path: ca.crt
optional: true
secretName: argocd-repo-server-tls
- emptyDir: {}
name: plugins-home
{{- if .Values.server.initContainers }}
initContainers:
{{- toYaml .Values.server.initContainers | nindent 6 }}