Upgrading Cloud Native Compiler
-
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 -
Update the helm repository (this will refresh package information):
$ helm repo update -
Create the new or recreate the deleted namespace
$ kubectl create namespace compiler -
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 -
Verify that all started pods are ready:
$ kubectl get all -n compiler