Glasswall Halo Upgrade

Prev Next

From time to time, you will be required to upgrade Glasswall Halo to stay on top of the latest updates and releases. 

Upgrading Glasswall Halo

  • To upgrade Glasswall Halo, firstly ensure your default namespace is 'cdrplatform':
kubectl config set-context --current --namespace="cdrplatform"
  • Find the latest versions (tags):
az acr repository show-tags --repository <repository>  -n glasswallhub  --username ${token_ID} --password ${token} --orderby time_desc
  • Login to the repository via Helm
helm registry login "glasswallhub.azurecr.io" -u "${token_ID}" -p "${token}"

  • Pull the latest chart 
# pull glasswall charts
helm pull oci://glasswallhub.azurecr.io/helm/<repository> --version ${version} --untar --untardir .
  • Run the Helm upgrade
helm upgrade --install <chartname> <chartname>\
  --set image.tag=<tag> --set image.repository=glasswallhub.azurecr.io/<repository>