Skip to content

v0.4.1

Choose a tag to compare

@OmkarDeshpande7 OmkarDeshpande7 released this 03 Mar 08:32
· 78 commits to main since this release
d389a4c

What's Changed

Full Changelog: v0.4.0...v0.4.1

Upgrade Guide: v0.4.0 → v0.4.1

Users upgrading from v0.4.0 to v0.4.1 needs 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 with the below command given.

    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:

     kubectl rollout restart deployment -n migration-system
    
  • Step 3: Follow Upgrade Steps from the public documentation