Hello,
I have created a HelmRepository of type OCI like this:
apiVersion: source.toolkit.fluxcd.io/v1beta2
kind: HelmRepository
metadata:
name: myhelmrepo
spec:
type: oci
provider: azure
interval: 10m
url: oci://myhelmrepo.azurecr.io/helm
timeout: 60s
I get the following error:
$ kubectl -n flux get helmrepository myhelmrepo
myhelmrepo oci://myhelmrepo.azurecr.io/helm 17h False failed to get credential from azure: DefaultAzureCredential: failed to acquire a token....
My kubernetes cluster underneath is an AKS cluster, and the managed Identity assigned to the kubelet does have access to the whole resource group where my registry is stored. There are other container registries in this resource group with standard docker images, and the cluster is able to pull images just fine.
Am I missing something ?
Hello,
I have created a HelmRepository of type OCI like this:
I get the following error:
My kubernetes cluster underneath is an AKS cluster, and the managed Identity assigned to the kubelet does have access to the whole resource group where my registry is stored. There are other container registries in this resource group with standard docker images, and the cluster is able to pull images just fine.
Am I missing something ?