Skip to main content

Upgrading the Metoro Helm Chart

To upgrade your Metoro installation to the latest version, run the following commands:
helm repo add metoro-exporter https://metoro-io.github.io/metoro-helm-charts/
helm repo update metoro-exporter
helm upgrade --namespace metoro metoro-exporter metoro-exporter/metoro-exporter
These commands will:
  1. Add the Metoro Helm repository (if not already added)
  2. Update your local repository cache to get the latest chart versions
  3. Upgrade your existing Metoro installation in the metoro namespace to the latest version
The upgrade process will preserve your existing configuration values. If you need to modify configuration during the upgrade, you can pass additional values using the --set flag or a values file with -f values.yaml.

Verifying the Upgrade

After upgrading, you can verify the new version is running:
helm list -n metoro
kubectl get pods -n metoro
The pods should restart and show the new version running.
I