metoro-onprem chart and managed by the Altinity ClickHouse Operator.
If ClickHouse is externally managed, resize storage through the team and tooling that operate that ClickHouse service. The Metoro chart does not manage external ClickHouse PVCs.
What To Change
Theclickhouse.bundled.storage Helm value controls the ClickHouse data PVC size per replica. The chart renders this into the metoro-default-storage volume claim template on the ClickHouseInstallation named metoro.
In hot PVC plus object storage deployments, this value is the hot PVC size per ClickHouse replica. In PVC-only deployments, this value is the full retained ClickHouse PVC size per replica.
Increase the value in metoro-hub-values.yaml:
Prerequisites
Before applying the change, confirm:- The ClickHouse StorageClass supports volume expansion, for example
allowVolumeExpansion: true. - The StorageClass is retained and network attached so ClickHouse pods can move between nodes while keeping their PVCs.
- The backing storage provider has enough free capacity for every ClickHouse replica.
- The new size is larger than the current ClickHouse PVC size.
Apply The Change
Apply the updated values with the same Helm release and chart version used for the hub:What Happens
After the Helm upgrade, theClickHouseInstallation named metoro updates its metoro-default-storage volume claim template to the new size.
The Altinity ClickHouse Operator reconciles the updated ClickHouseInstallation and updates the ClickHouse PVC requests. Kubernetes and the storage provider then expand each PVC.
Depending on the CSI driver and filesystem expansion behavior, ClickHouse pods may keep running while the filesystem grows, or pods may restart so the larger filesystem is visible inside the container. If restarts are needed, expect the operator to process ClickHouse pods one at a time rather than restarting all replicas together.
During the rollout, Apiserver and Ingester may briefly observe ClickHouse replica readiness changes. They should continue operating and recover automatically as ClickHouse replicas return to ready state.
Verify The Rollout
Check that theClickHouseInstallation exists and is being reconciled:
- The CHI desired storage value matches
clickhouse.bundled.storage. - ClickHouse PVCs show the larger requested capacity.
- ClickHouse pods remain ready, or restart one at a time if the storage driver requires a remount or filesystem expansion on restart.
- Apiserver and Ingester recover automatically if any ClickHouse replica briefly becomes unavailable.
metoro-hub-values.yaml as the source of truth and let Helm, the ClickHouseInstallation, and the Altinity ClickHouse Operator reconcile the change.