Glasswall's Artifact Registry stores the container images and Helm charts for Glasswall Halo.
To pull container images and Helm charts from Glasswall's Artifact Registry, you will need to use your token
and token_id
in two commands.
- First, create a Kubernetes secret to allow the cluster access to the registry:
kubectl create secret docker-registry acr-secret -n cdrplatform \
--docker-server="glasswallhub.azurecr.io" \
--docker-username="${token_id}" \
--docker-password="${token}"
- Then, login to the Helm registry:
helm registry login "glasswallhub.azurecr.io" -u "${token_id}" -p "${token}"