Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
228a10c
chore(chart-deps): update argocd-image-updater to version 1.0.2
svcAPLBot Dec 11, 2025
91d679c
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 12, 2025
7a54554
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 12, 2025
cf6e289
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 12, 2025
e159331
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 12, 2025
4355bf0
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 12, 2025
3fcf62a
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 16, 2025
74637f2
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 16, 2025
c0eec88
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 16, 2025
852c0cb
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 17, 2025
1c7d0e0
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 17, 2025
cf38aed
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 17, 2025
ec90279
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 18, 2025
34f21dd
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 18, 2025
28ae94c
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 18, 2025
24eb100
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 18, 2025
90047c6
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 19, 2025
fefde15
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 19, 2025
c4c5ef6
Merge branch 'main' into ci-update-argocd-image-updater-to-1.0.2
svcAPLBot Dec 19, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chart/chart-index/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies:
version: 9.1.5
repository: https://argoproj.github.io/argo-helm
- name: argocd-image-updater
version: 1.0.1
version: 1.0.2
repository: oci://ghcr.io/argoproj/argo-helm/argocd-image-updater
- name: cert-manager
version: v1.19.2
Expand Down
4 changes: 2 additions & 2 deletions charts/argocd-image-updater/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
annotations:
artifacthub.io/changes: |
- kind: changed
description: Bump argocd-image-updater to v1.0.1
description: Allow full propagation of a custom configmap name in Deployment environment variables
artifacthub.io/signKey: |
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
Expand All @@ -20,4 +20,4 @@ maintainers:
url: https://argoproj.github.io/
name: argocd-image-updater
type: application
version: 1.0.1
version: 1.0.2
10 changes: 5 additions & 5 deletions charts/argocd-image-updater/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
valueFrom:
configMapKeyRef:
key: interval
name: argocd-image-updater-config
name: {{ .Values.config.name }}
optional: true
- name: IMAGE_UPDATER_LOGLEVEL
valueFrom:
Expand All @@ -71,7 +71,7 @@ spec:
valueFrom:
configMapKeyRef:
key: max_concurrent_reconciles
name: a{{ .Values.config.name }}
name: {{ .Values.config.name }}
optional: true
- name: GIT_COMMIT_USER
valueFrom:
Expand Down Expand Up @@ -112,13 +112,13 @@ spec:
- name: ENABLE_WEBHOOK
valueFrom:
configMapKeyRef:
name: argocd-image-updater-config
name: {{ .Values.config.name }}
key: webhook.enable
optional: true
- name: WEBHOOK_PORT
valueFrom:
configMapKeyRef:
name: argocd-image-updater-config
name: {{ .Values.config.name }}
key: webhook.port
optional: true
- name: QUAY_WEBHOOK_SECRET
Expand Down Expand Up @@ -148,7 +148,7 @@ spec:
- name: WEBHOOK_RATELIMIT_ALLOWED
valueFrom:
configMapKeyRef:
name: argocd-image-updater-config
name: {{ .Values.config.name }}
key: webhook.ratelimit-allowed
optional: true
{{- with .Values.extraEnv }}
Expand Down