Visit Azul.com Support

Upgrading Cloud Native Compiler

Need help?
Schedule a consultation with an Azul performance expert.
Contact Us
  1. If you are upgrading an existing installation to the latest version, make sure to uninstall your existing one or use a different namespace.

     
    $ helm uninstall compiler -n compiler $ kubectl delete namespace compiler
  2. Update the helm repository (this will refresh package information):

     
    $ helm repo update
  3. Create the new or recreate the deleted namespace

     
    $ kubectl create namespace compiler
  4. Install using Helm, passing in the values-override.yaml (or your custom values file):

     
    $ helm install compiler cnc-helm/prime-cnc -n compiler -f values-override.yaml
  5. Verify that all started pods are ready:

     
    $ kubectl get all -n compiler