Upgrading Cloud Native Compiler
Table of Contents
Upgrading from 1.6.0 to 1.6.1
An existing CNC 1.6.0 installation can be upgraded to a newer version with the following commands:
$ helm repo update
$ helm upgrade compiler cnc-helm/prime-cnc -n compiler -f values-override.yaml
$ kubectl get all -n compiler
Upgrading from Prior Versions to 1.6.0
-
If you are upgrading an existing installation to version 1.6.0, 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