The [Glasswall Artifact Registry](https://glasswallhub.azurecr.io/) 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.


```shell
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.


```shell
helm registry login "glasswallhub.azurecr.io" -u ""$token_id"" -p ""$token""
```

***

Please see [Glasswall Artifact Registry ](/halo/glasswall-artifact-registry)for a complete list of hosted container images and Helm charts.

* * *


<!-- markdownlint-disable MD033 -->
<div class="text--center margin-top--lg" style={{display: 'flex', justifyContent: 'center', gap: '12px'}}>
  <a href="/halo/aks-step-6" class="button button--primary">
    Continue
  </a>

  <a href="https://www.glasswall.com/support" class="button button--primary button--lg">
    Need help?
  </a>
</div>
<!-- markdownlint-disable MD033 -->