Step 5 - Enable access to Glasswall's Artifact Registry
The Glasswall Artifact Registry hosts the container images and Helm charts required to complete your Glasswall Halo installation.
To pull container images and Helm charts from the Glasswall Artifact Registry, use your token and token_id with the commands shown below.
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"
- Login to the Helm registry using your token_id and token as shown below.
helm registry login "glasswallhub.azurecr.io" -u ""$token_id"" -p ""$token""
Please see Glasswall Artifact Registry for a complete list of hosted container images and Helm charts.