Step 4 - Enable access to Glasswall's Artifact Registry
Glasswall's Artifact Registrystores container images and Helm charts which you need to complete your Glasswall Halo installation.
To pull container images and Helm charts from Glasswall Artifact Registry, you need to use your token and token_id in two commands:
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}"
See Glasswall's Artifact Registryfor a complete list of hosted container images and Helm charts.