mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
cc8427f11b
See https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#lists
31 lines
788 B
Markdown
31 lines
788 B
Markdown
---
|
|
sort: 15
|
|
weight: 15
|
|
title: FAQ
|
|
menu:
|
|
docs:
|
|
parent: "operator"
|
|
weight: 15
|
|
identifier: "faq-operator"
|
|
aliases:
|
|
- /operator/FAQ.html
|
|
---
|
|
|
|
# FAQ
|
|
|
|
## How to change VMStorage PVC storage class
|
|
|
|
With Helm chart deployment:
|
|
|
|
1. Update the PVCs manually
|
|
1. Run `kubectl delete statefulset --cascade=orphan {vmstorage-sts}` which will delete the sts but keep the pods
|
|
1. Update helm chart with the new storage class in the volumeClaimTemplate
|
|
1. Run the helm chart to recreate the sts with the updated value
|
|
|
|
With Operator deployment:
|
|
|
|
1. Update the PVCs manually
|
|
1. Run `kubectl delete vmcluster --cascade=orphan {cluster-name}`
|
|
1. Run `kubectl delete statefulset --cascade=orphan {vmstorage-sts}`
|
|
1. Update VMCluster spec to use new storage class
|
|
1. Apply cluster configuration
|