feat(argocd-image-updater): Allow defining extraEnvFrom for the deployment (#2646)

Signed-off-by: bakito <github@bakito.ch>
This commit is contained in:
Marc Brugger 2024-04-18 23:41:24 +02:00 committed by GitHub
parent 8abf55a807
commit a12dbf812c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 15 additions and 7 deletions

View file

@ -104,6 +104,10 @@ spec:
{{- with .Values.extraEnv }}
{{- toYaml . | nindent 10 }}
{{- end }}
{{- with .Values.extraEnvFrom }}
envFrom:
{{- toYaml . | nindent 12 }}
{{- end }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"