Skip to content

Helm

Add registries from Azure

helm repo add <ACR_NAME> https://AZ_ACR_FQDN/helm/v1/repo --username <GRAB_THE_USERNAME_FROM_ACR> --password <GRAB_THE_PASSWORD_FROM_ACR> --force-update

The additional way to add helm repo using az cli is: az acr helm repo add --name <ACR_NAME>

Maybe you will need to set the following environment var:

export HELM_EXPERIMENTAL_OCI=1

Check which changes will cause your code

$ cd customer-ctad/services/<SERVICE_NAME>
...
$ helmfile diff

Debug helm charts and test build them

helm install --take-ownership --dry-run --debug -f values-file.yaml <installation-name> .

Render templates

helm template -f values-file.yaml -n "awesome-namespace" --debug <installation-name> .