This guide describes how to upgrade the Helm module and wandb server version in your deployment.
- Update the Helm repo to fetch the latest charts:
helm repo update
- Check the available versions of the wandb Helm chart:
helm search repo wandb --versions
- Choose the desired version and upgrade the Helm release:
helm upgrade --namespace=wandb wandb wandb/wandb --version <desired_version> --set license=$LICENSE --set bucket=$BUCKET --set bucketRegion=$BUCKET_REGION
Replace <desired_version> with the version you want to upgrade to.
- Update the
values.yaml
file by setting the desired wandb server image tag:
image:
repository: wandb/local
pullPolicy: always
tag: "<desired_wandb_version>"
Replace <desired_wandb_version> with the version you want to upgrade to.
- Apply the changes by upgrading the Helm release:
helm upgrade --namespace=wandb wandb ./charts/wandb --set license=$LICENSE --set bucket=$BUCKET --set bucketRegion=$BUCKET_REGION
- Monitor the deployment progress to ensure the new version is running:
kubectl -n wandb get pods
- Verify the upgraded wandb server version by checking the logs:
kubectl -n wandb get po
kubectl -n wandb logs <wandb_pod_name>
Replace <wandb_pod_name> with the name of the wandb pod in your deployment.