Allow custom tools for argo-cd in helm chart (#177)

* enable custom tools in argo helm chart
* add examples
* bump chart version
This commit is contained in:
jeroenlanckmans 2019-12-09 01:22:51 +01:00 committed by Sean Johnson
parent 3a2c980044
commit ec04e0c043
3 changed files with 29 additions and 3 deletions

View file

@ -60,7 +60,7 @@ spec:
{{- end }}
volumeMounts:
{{- if .Values.repoServer.volumeMounts }}
{{- toYaml .Values.repoServer.volumeMounts | nindent 10}}
{{- toYaml .Values.repoServer.volumeMounts | nindent 8}}
{{- end }}
{{- if .Values.configs.knownHosts }}
- mountPath: /app/config/ssh
@ -112,7 +112,7 @@ spec:
serviceAccountName: {{ template "argo-cd.repoServerServiceAccountName" . }}
volumes:
{{- if .Values.repoServer.volumes }}
{{- toYaml .Values.repoServer.volumes | nindent 8}}
{{- toYaml .Values.repoServer.volumes | nindent 6}}
{{- end }}
{{- if .Values.configs.knownHosts }}
- configMap:
@ -124,3 +124,7 @@ spec:
name: argocd-tls-certs-cm
name: tls-certs
{{- end }}
{{- if .Values.repoServer.initContainers }}
initContainers:
{{- toYaml .Values.repoServer.initContainers | nindent 6 }}
{{- end }}