argocd-helm/charts/argocd-image-updater/templates/configmap.yaml
Niklas Jönsson aa41896292
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>
2021-11-22 08:18:26 +01:00

36 lines
1 KiB
YAML

---
apiVersion: v1
kind: ConfigMap
metadata:
labels:
{{- 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:
{{- toYaml . | nindent 6 }}
{{- end }}