feat(argocd-image-updater): upgrade as following upstream
Signed-off-by: yu-croco <yu.croco@gmail.com>
This commit is contained in:
parent
b5b950279a
commit
2e9b4fef6b
2 changed files with 27 additions and 1 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
name: argocd-image-updater
|
name: argocd-image-updater
|
||||||
description: A Helm chart for Argo CD Image Updater, a tool to automatically update the container images of Kubernetes workloads which are managed by Argo CD
|
description: A Helm chart for Argo CD Image Updater, a tool to automatically update the container images of Kubernetes workloads which are managed by Argo CD
|
||||||
type: application
|
type: application
|
||||||
version: 0.10.3
|
version: 0.11.0
|
||||||
appVersion: v0.14.0
|
appVersion: v0.14.0
|
||||||
home: https://github.com/argoproj-labs/argocd-image-updater
|
home: https://github.com/argoproj-labs/argocd-image-updater
|
||||||
icon: https://argocd-image-updater.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argocd-image-updater.readthedocs.io/en/stable/assets/logo.png
|
||||||
|
|
|
@ -100,6 +100,24 @@ spec:
|
||||||
key: kube.events
|
key: kube.events
|
||||||
name: argocd-image-updater-config
|
name: argocd-image-updater-config
|
||||||
optional: true
|
optional: true
|
||||||
|
- name: GIT_COMMIT_SIGNING_KEY
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
key: git.commit-signing-key
|
||||||
|
name: argocd-image-updater-config
|
||||||
|
optional: true
|
||||||
|
- name: GIT_COMMIT_SIGNING_METHOD
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
key: git.commit-signing-method
|
||||||
|
name: argocd-image-updater-config
|
||||||
|
optional: true
|
||||||
|
- name: GIT_COMMIT_SIGN_OFF
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
key: git.commit-sign-off
|
||||||
|
name: argocd-image-updater-config
|
||||||
|
optional: true
|
||||||
{{- with .Values.extraEnv }}
|
{{- with .Values.extraEnv }}
|
||||||
{{- toYaml . | nindent 10 }}
|
{{- toYaml . | nindent 10 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -141,6 +159,10 @@ spec:
|
||||||
name: ssh-config
|
name: ssh-config
|
||||||
- mountPath: /tmp
|
- mountPath: /tmp
|
||||||
name: tmp
|
name: tmp
|
||||||
|
- name: ssh-signing-key
|
||||||
|
mountPath: /app/ssh-keys/id_rsa
|
||||||
|
readOnly: true
|
||||||
|
subPath: sshPrivateKey
|
||||||
{{- if .Values.authScripts.enabled }}
|
{{- if .Values.authScripts.enabled }}
|
||||||
- mountPath: /scripts
|
- mountPath: /scripts
|
||||||
name: authscripts
|
name: authscripts
|
||||||
|
@ -172,6 +194,10 @@ spec:
|
||||||
name: argocd-image-updater-ssh-config
|
name: argocd-image-updater-ssh-config
|
||||||
optional: true
|
optional: true
|
||||||
name: ssh-config
|
name: ssh-config
|
||||||
|
- name: ssh-signing-key
|
||||||
|
secret:
|
||||||
|
secretName: ssh-git-creds
|
||||||
|
optional: true
|
||||||
- emptyDir: {}
|
- emptyDir: {}
|
||||||
name: tmp
|
name: tmp
|
||||||
{{- with .Values.volumes }}
|
{{- with .Values.volumes }}
|
||||||
|
|
Loading…
Reference in a new issue