> ## Documentation Index
> Fetch the complete documentation index at: https://metoro.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Upgrading Metoro

> How to upgrade your Metoro Helm chart to the latest version

## Upgrading the Metoro Helm Chart

To upgrade your Metoro installation to the latest version, run the following commands:

```bash theme={null}
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

<Note>
  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`.
</Note>

## Verifying the Upgrade

After upgrading, you can verify the new version is running:

```bash theme={null}
helm list -n metoro
kubectl get pods -n metoro
```

The pods should restart and show the new version running.
