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.

>```sh
>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:

>```sh
>helm registry login "glasswallhub.azurecr.io" -u "${token_id}" -p "${token}"
>```

* * *

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

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