Step 4 - Enable access to Glasswall's Artifact Registry
Glasswall’s Artifact Registry stores the container images and Helm charts for Glasswall Halo.
To pull container images and Helm charts from the Artifact Registry, you must use your token and token_id.
- First, create a Kubernetes secret to allow the cluster to access the registry.
kubectl create secret docker-registry acr-secret -n cdrplatform \
--docker-server="glasswallhub.azurecr.io" \
--docker-username="${token_id}" \
--docker-password="${token}"
kubectl create secret docker-registry acr-secret -n license-management \
--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}"