Step 5 - Enable access to Glasswall's Artifact Registry
    • PDF

    Step 5 - Enable access to Glasswall's Artifact Registry

    • PDF

    Article summary

    Glasswall's Artifact Registry stores container images and Helm charts which you need to complete your CDR Platform installation.

    • To pull container images and Helm charts from Glasswall Artifact Registry, you need to use your token and token_ID in two commands:
    • Create acr-secret secret in all 5 namespaces. These will be used by the Kubernetes deployments to pull the container images.
    kubectl create secret docker-registry acr-secret -n cdr-enabler \
      --docker-server="glasswallhub.azurecr.io" --docker-username="${token_ID}" --docker-password="${token}"
    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 common-services \
      --docker-server="glasswallhub.azurecr.io" --docker-username="${token_ID}" --docker-password="${token}"
    kubectl create secret docker-registry acr-secret -n event-collation \
      --docker-server="glasswallhub.azurecr.io" --docker-username="${token_ID}" --docker-password="${token}"
    kubectl create secret docker-registry acr-secret -n scan-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 Artifact Registry for a complete list of hosted container images and Helm charts.


     


    Was this article helpful?