How to Upgrade K8up
Upgrade K8up from 0.x to 1.x
The upgrade is generally done with the following steps:
-
Prepare new Helm release
-
Uninstall K8up
0.x
-
Install K8up
1.x
-
Verify your backups work
Do not remove the CRDs, as you might loose the resources! |
Prerequisites
-
kubectl
oroc
-
helm
version 3, version 2 for deinstallation if you’re still using Tiller
You might need to adapt the commands to your needs. This guide does not provide a copy-paste upgrade script, but points you in the right direction. It also assumes that you know basic usage of Helm. |
Prepare new Helm release
The Helm Chart v1.0 comes with a few new and changed properties. Please consult the README.
Most notably, the Chart is targeted to recent Kubernetes versions.
Use helm upgrade --reuse-values only when you know what you’re doing.
Some parameters have changed and are backwards incompatible.
Make sure you have the new CRDs installed beforehand.
|
Uninstall 0.x
# Set the namespace
ns=k8up-system
# Shut down and uninstall K8up. This should not delete the CRDs
helm -n ${ns} uninstall k8up
bash