![argoproj-renovate[bot]](/assets/img/avatar_default.png)
* chore(argocd-image-updater): Update dependency argoproj-labs/argocd-image-updater to v0.14.0 * feat(argocd-image-updater): upgrade as following upstream Signed-off-by: yu-croco <yu.croco@gmail.com> * feat(argocd-image-updater): configure gitCommitSigningKey and gitCommitSignOff Signed-off-by: yu-croco <yu.croco@gmail.com> * fix(argocd-image-updater): add missing attribute Signed-off-by: yu-croco <yu.croco@gmail.com> --------- Signed-off-by: yu-croco <yu.croco@gmail.com> Co-authored-by: renovate[bot] <renovate[bot]@users.noreply.github.com> Co-authored-by: yu-croco <yu.croco@gmail.com>
48 lines
1.5 KiB
YAML
48 lines
1.5 KiB
YAML
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
labels:
|
|
{{- include "argocd-image-updater.labels" . | nindent 4 }}
|
|
name: argocd-image-updater-config
|
|
namespace: {{ include "argocd-image-updater.namespace" . | quote }}
|
|
data:
|
|
{{- with .Values.config.applicationsAPIKind }}
|
|
applications_api: {{ . | quote }}
|
|
{{- if eq . "argocd" }}
|
|
argocd.grpc_web: {{ $.Values.config.argocd.grpcWeb | quote }}
|
|
{{- with $.Values.config.argocd.serverAddress }}
|
|
argocd.server_addr: {{ . | quote }}
|
|
{{- end }}
|
|
argocd.insecure: {{ $.Values.config.argocd.insecure | quote }}
|
|
argocd.plaintext: {{ $.Values.config.argocd.plaintext | quote }}
|
|
{{- end -}}
|
|
{{- end }}
|
|
{{- with .Values.config.logLevel }}
|
|
log.level: {{ . | quote }}
|
|
{{- end }}
|
|
{{- with .Values.config.gitCommitUser }}
|
|
git.user: {{ . | quote }}
|
|
{{- end }}
|
|
{{- with .Values.config.gitCommitMail }}
|
|
git.email: {{ . | quote }}
|
|
{{- end }}
|
|
{{- with .Values.config.gitCommitTemplate }}
|
|
git.commit-message-template: |
|
|
{{- nindent 4 . }}
|
|
{{- end }}
|
|
{{- with .Values.config.gitCommitSigningKey }}
|
|
git.commit-signing-key: {{ . | quote }}
|
|
{{- end }}
|
|
{{- with .Values.config.gitCommitSignOff }}
|
|
git.commit-sign-off: {{ . | quote }}
|
|
{{- end }}
|
|
{{- with .Values.config.gitCommitSigningMethod }}
|
|
git.commit-signing-method: {{ . | quote }}
|
|
{{- end }}
|
|
kube.events: {{ .Values.config.disableKubeEvents | quote }}
|
|
{{- with .Values.config.registries }}
|
|
registries.conf: |
|
|
registries:
|
|
{{- toYaml . | nindent 6 }}
|
|
{{- end }}
|