[Glasswall's Artifact Registry](/halo/glasswall-artifact-registry) stores container images and Helm charts which you need to complete your 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:

>```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}"
>```

- Login to the Helm registry using your `token_ID` and `token` as shown below:

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

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/gke-step-6" 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-enable MD033 -->