Manage
Learn how to upgrade your server to a new version of ZenML for the different deployment options.
# find your container ID docker ps# stop the container docker stop <CONTAINER_ID> # remove the container docker rm <CONTAINER_ID>docker run -it -d -p 8080:8080 --name <CONTAINER_NAME> zenmldocker/zenml-server:<VERSION>
helm -n <namespace> upgrade zenml-server oci://public.ecr.aws/zenml/zenml --version <VERSION> --reuse-valueshelm -n <namespace> get values zenml-server > custom-values.yamlhelm -n <namespace> upgrade zenml-server oci://public.ecr.aws/zenml/zenml --version <VERSION> -f custom-values.yaml
Important Considerations After Upgrading
Last updated
Was this helpful?