diff options
| -rw-r--r-- | manifests/base/deployment/argocd-image-updater-deployment.yaml | 10 | ||||
| -rw-r--r-- | manifests/install.yaml | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/manifests/base/deployment/argocd-image-updater-deployment.yaml b/manifests/base/deployment/argocd-image-updater-deployment.yaml index e019857..fb7c3f6 100644 --- a/manifests/base/deployment/argocd-image-updater-deployment.yaml +++ b/manifests/base/deployment/argocd-image-updater-deployment.yaml @@ -52,4 +52,14 @@ spec: port: 8080 initialDelaySeconds: 3 periodSeconds: 30 + volumeMounts: + - name: registries-conf + mountPath: /app/config serviceAccountName: argocd-image-updater + volumes: + - name: registries-conf + configMap: + name: argocd-image-updater-config + items: + - key: registries.conf + path: registries.conf
\ No newline at end of file diff --git a/manifests/install.yaml b/manifests/install.yaml index 67e3c07..d35c7d6 100644 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -77,4 +77,14 @@ spec: port: 8080 initialDelaySeconds: 3 periodSeconds: 30 + volumeMounts: + - mountPath: /app/config + name: registries-conf serviceAccountName: argocd-image-updater + volumes: + - configMap: + items: + - key: registries.conf + path: registries.conf + name: argocd-image-updater-config + name: registries-conf |
