VictoriaMetrics/docs/operator/FAQ.md
Artem Navoiev 83c87f822a docs: prepare operator docs to migration
Signed-off-by: Artem Navoiev <tenmozes@gmail.com>
2023-01-11 18:19:40 +02:00

788 B

sort weight title menu aliases
15 15 FAQ
docs
parent weight identifier
operator 15 faq-operator
/operator/FAQ.html

FAQ

How to change VMStorage PVC storage class

With Helm chart deployment:

  1. Update the PVCs manually
  2. Run kubectl delete statefulset --cascade=orphan {vmstorage-sts} which will delete the sts but keep the pods
  3. Update helm chart with the new storage class in the volumeClaimTemplate
  4. Run the helm chart to recreate the sts with the updated value

With Operator deployment:

  1. Update the PVCs manually
  2. Run kubectl delete vmcluster --cascade=orphan {cluster-name}
  3. Run kubectl delete statefulset --cascade=orphan {vmstorage-sts}
  4. Update VMCluster spec to use new storage class
  5. Apply cluster configuration