diff options
| author | Dong Wang <wd@wdicc.com> | 2024-11-04 22:54:58 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-04 09:54:58 -0500 |
| commit | e06eb69decc205b511d56eb5c81d0a6470a480d5 (patch) | |
| tree | e386c32b856b2eb94f9b76ca0bc6f8fc0a105cab | |
| parent | 17a57daf29b63ebca92d4285783dc3cf6698f190 (diff) | |
fix: log level for library from argocd (#913)
Signed-off-by: Dong Wang <wd@wdicc.com>
| -rw-r--r-- | manifests/base/deployment/argocd-image-updater-deployment.yaml | 6 | ||||
| -rw-r--r-- | manifests/install.yaml | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/manifests/base/deployment/argocd-image-updater-deployment.yaml b/manifests/base/deployment/argocd-image-updater-deployment.yaml index 5a38be1..842dffb 100644 --- a/manifests/base/deployment/argocd-image-updater-deployment.yaml +++ b/manifests/base/deployment/argocd-image-updater-deployment.yaml @@ -101,6 +101,12 @@ spec: name: argocd-image-updater-config key: kube.events optional: true + - name: ARGOCD_LOGLEVEL + valueFrom: + configMapKeyRef: + name: argocd-image-updater-config + key: log.level + optional: true livenessProbe: httpGet: path: /healthz diff --git a/manifests/install.yaml b/manifests/install.yaml index 5457af5..49b2ce8 100644 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -209,6 +209,12 @@ spec: key: kube.events name: argocd-image-updater-config optional: true + - name: ARGOCD_LOGLEVEL + valueFrom: + configMapKeyRef: + key: log.level + name: argocd-image-updater-config + optional: true image: quay.io/argoprojlabs/argocd-image-updater:latest imagePullPolicy: Always livenessProbe: |
