diff --git a/charts/argocd-image-updater/Chart.yaml b/charts/argocd-image-updater/Chart.yaml index 02438363..a04f5c6f 100644 --- a/charts/argocd-image-updater/Chart.yaml +++ b/charts/argocd-image-updater/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 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 type: application -version: 0.12.0 -appVersion: v0.15.2 +version: 0.12.1 +appVersion: v0.16.0 home: https://github.com/argoproj-labs/argocd-image-updater icon: https://argocd-image-updater.readthedocs.io/en/stable/assets/logo.png keywords: @@ -19,4 +19,4 @@ annotations: url: https://argoproj.github.io/argo-helm/pgp_keys.asc artifacthub.io/changes: | - kind: changed - description: ConfigMap and Secret names are now configurable + description: Bump argocd-image-updater to v0.16.0 diff --git a/charts/argocd-image-updater/templates/deployment.yaml b/charts/argocd-image-updater/templates/deployment.yaml index 87f1fbf4..fefb5ac5 100644 --- a/charts/argocd-image-updater/templates/deployment.yaml +++ b/charts/argocd-image-updater/templates/deployment.yaml @@ -94,12 +94,6 @@ spec: key: git.email name: {{ .Values.config.name }} optional: true - - name: IMAGE_UPDATER_KUBE_EVENTS - valueFrom: - configMapKeyRef: - key: kube.events - name: {{ .Values.config.name }} - optional: true - name: GIT_COMMIT_SIGNING_KEY valueFrom: configMapKeyRef: @@ -118,6 +112,18 @@ spec: key: git.commit-sign-off name: {{ .Values.config.name }} optional: true + - name: IMAGE_UPDATER_KUBE_EVENTS + valueFrom: + configMapKeyRef: + key: kube.events + name: {{ .Values.config.name }} + optional: true + - name: ARGOCD_LOGLEVEL + valueFrom: + configMapKeyRef: + key: log.level + name: {{ .Values.config.name }} + optional: true {{- with .Values.extraEnv }} {{- toYaml . | nindent 10 }} {{- end }}