Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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.

  1. 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.

  2. Run helm upgrade as usual.

  3. Make sure all pods and jobs have finished successfully.

  4. Set pinot.server.replicaCount back to its original value in the values.yaml file.

  5. Either run helm upgrade again.

    1. 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.

...