mustafa Barış Ege
mustafa Barış Ege
Hi @sheldontsen-qb , you need to use alias name on strategy: ``` argocd-image-updater.argoproj.io/image-list: fullstack-backend=my-registry:5000/fullstack-backend:latest argocd-image-updater.argoproj.io/fullstack-backend.update-strategy: digest ``` [Also read From ArgoCD](https://argocd-image-updater.readthedocs.io/en/stable/configuration/images/#update-strategies ) Good Day!
@sheldontsen-qb I'm not sure about this, but can you try deleting tag from values.yaml and give it an empty string: ``` backend: image: repository: my-registry:5000 name: fullstack-backend tag: "" ```...
have you added your private registery to image-updater config? ``` apiVersion: v1 kind: ConfigMap metadata: labels: app.kubernetes.io/name: argocd-image-updater-config app.kubernetes.io/part-of: argocd-image-updater name: argocd-image-updater-config data: #applications_api: argocd # The address of Argo...
Hmm, should it be related to registery? It has to detect the registery without you adding it to the image name. In our project, we use Harbor for OCI, and...