Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
Successfully packaged chart and saved it to: /Users/john/projects/netguard_cyberdome/deployment/kubernetes/components/ingress-controller/ingress-nginx-4.3.0.tgz



OCI Registry 

Pushing Chart

Code Block
themeEmacs
helm push ./redis-24.3.tgz oci://ncydacrinprogress.azurecr.io/charts/


Pulling Chart

Code Block
themeEmacs
helm pull oci://ncydacrinprogress.azurecr.io/charts/redis --version 24-john --username ncydacrinprogress --password xxx


Helm V1 Registry

Add Azure Repo


Code Block
themeEmacs
helm repo add ncydacr https://ncydacr.azurecr.io/helm/v1/repo --username ncydacr --password XXXXX
Code Block
"ncydacr" has been added to your repositories


Push to Azure

Code Block
themeEmacs
export HELM_EXPERIMENTAL_OCI=1
helm push <PACKAGE_FILE_NAME>.tgz oci://ncydacr.azurecr.io/charts
Code Block
helm push ingress-nginx-4.3.0.tgz oci://ncydacr.azurecr.io/charts
Pushed: ncydacr.azurecr.io/charts/ingress-nginx:4.3.0
Digest: sha256:0ffd79e4d12a33a232c5d871d298b0672a08dc467af56337b90e6ff893e898cd


Push using az (required for our helm2 charts used by Flux)

Code Block
themeEmacs
az acr helm push -n ncydacr ./<PACKAGE_FILE_NAME>.tgz

...