Skip to content

v0.4.1

What’s Changed

Full Changelog: https://github.com/platform9/vjailbreak/compare/v0.4.0…v0.4.1

Upgrade Guide: v0.4.0 → v0.4.1

Users upgrading from v0.4.0 to v0.4.1 need to follow the steps below:

Step 1: Update v0.4.0 Container Images

In your existing v0.4.0 setup, update the deployment images to pull the latest v0.4.0 containers and set imagePullPolicy to Always using the following command:

Terminal window
kubectl patch deployment migration-controller-manager -n migration-system --type='json' \
-p='[{"op":"replace","path":"/spec/template/spec/containers/0/imagePullPolicy","value":"Always"}]' && \
kubectl patch deployment migration-vpwned-sdk -n migration-system --type='json' \
-p='[{"op":"replace","path":"/spec/template/spec/containers/0/imagePullPolicy","value":"Always"}]' && \
kubectl patch deployment vjailbreak-ui -n migration-system --type='json' \
-p='[{"op":"replace","path":"/spec/template/spec/containers/0/imagePullPolicy","value":"Always"}]'

Step 2: Restart Deployments

Restart the deployments to ensure the updated images are pulled and running:

Terminal window
kubectl rollout restart deployment -n migration-system

Step 3: Follow Upgrade Steps from the public documentation