Replies: 1 comment
-
Try to remove the apiVersion: v1
kind: Secret
metadata:
name: repo-helm-oci-acr
namespace: argocd
labels:
argocd.argoproj.io/secret-type: repository
stringData:
type: helm
url: myacr.azurecr.io/helm
enableOCI: "true"
useAzureWorkloadIdentity: "true" Then the Application crd looks like this when rendered: sources:
- repoURL: myacr.azurecr.io/helm
chart: standard-workload
targetRevision: 0.1.0
helm:
valueFiles:
- myvalues.yaml In reality, it is more complicated, as we use
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi there,
I am currently trying to reference a Helm Chart that is hosted in our GitLab Container registry. The repo is non-public, so auth is required to pull from it.
Unfortunately, I can't seem to manage to get this working. ArgoCD's attempts to pull from the OCI registry always end with a 403 error whereas manual attempts to do so (using the same credentials) work fine.
My application looks like this:
The corresponding secret looks like this:
I also tried this variant with no success:
Any hints what I am missing are much appreciated!
Thanks,
Thilo
Beta Was this translation helpful? Give feedback.
All reactions