...
Code Block |
---|
helm upgrade --install -n kfuse kfuse oci://us-east1-docker.pkg.dev/mvp-demo-301906/kfuse-helm/kfuse --version <SPECIFY VERSION HERE> -f custom_values.yaml |
Upgrading to Kfuse version from 2.7.2 to 2.7.3
The 2.7.3 version upgrade is a two step process.
Set pinot.server.replicaCount to 0. Keep note of the original value of this field because we will set it back to that value in step 4.
Run helm upgrade as usual.
Make sure all pods and jobs have finished successfully.
Set pinot.server.replicaCount back to its original value in the values.yaml file.
Either run helm upgrade again.
Alternatively, you could run
kubectl scale sts pinot-server-realtime --replicas=N
Upgrading to Kfuse version from 2.7.1 to 2.7.2
There is no specific pre-upgrade or post-upgrade steps for 2.7.2 release. Please follow the upgrade command section.
...