feat(argocd-image-updater): Add missing config map key for git commit-message-template (#986)
* [v0.2.2] Add missing config map key for git commit-message-template Signed-off-by: Niklas Jönsson <niklas@pej.se> * Sync some other things from upstream manifests Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Quote bools Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * fix: Rerun helm-docs Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
parent
bdb42a55cc
commit
aa41896292
6 changed files with 101 additions and 11 deletions
|
|
@ -6,6 +6,29 @@ metadata:
|
|||
{{- include "argocd-image-updater.labels" . | nindent 4 }}
|
||||
name: argocd-image-updater-config
|
||||
data:
|
||||
{{- with .Values.config.applicationsAPIKind }}
|
||||
applications_api: {{ . }}
|
||||
{{- end }}
|
||||
argocd.grpc_web: {{ .Values.config.argocd.grpcWeb | quote }}
|
||||
{{- with .Values.config.argocd.serverAddress }}
|
||||
argocd.server_addr: {{ . }}
|
||||
{{- end }}
|
||||
argocd.insecure: {{ .Values.config.argocd.insecure | quote }}
|
||||
argocd.plaintext: {{ .Values.config.argocd.plaintext | quote }}
|
||||
{{- with .Values.config.logLevel }}
|
||||
log.level: {{ . }}
|
||||
{{- end }}
|
||||
{{- with .Values.config.gitCommitUser }}
|
||||
git.user: {{ . }}
|
||||
{{- end }}
|
||||
{{- with .Values.config.gitCommitMail }}
|
||||
git.email: {{ . }}
|
||||
{{- end }}
|
||||
{{- with .Values.config.gitCommitTemplate }}
|
||||
git.commit-message-template: |
|
||||
{{- nindent 4 . }}
|
||||
{{- end }}
|
||||
kube.events: {{ .Values.config.disableKubeEvents | quote }}
|
||||
registries.conf: |
|
||||
{{- with .Values.config.registries }}
|
||||
registries:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue