Statefulset expand pvc

From UVOO Tech Wiki
Revision as of 23:36, 17 November 2022 by Busk (talk | contribs)
Jump to navigation Jump to search

https://serverfault.com/questions/955293/how-to-increase-disk-size-in-a-stateful-set

kubectl edit pvc influxdb-data-influxdb-0 -n influxdb  #edit size
kubectl delete sts --cascade=orphan influxdb -n influxdb
helm upgrade --install influxdb influxdata/influxdb -f v1/values.yaml --namespace influxdb
kubectl -n influxdb exec -it influxdb-0 -- df -h | grep influx
 kubectl rollout restart sts influxdb -n influxdb

kubectl -n influxdb exec -it influxdb-0 -- df -h | grep influx
kubectl get pvc -A | grep influx
Error: UPGRADE FAILED: cannot patch "influxdb" with kind StatefulSet: StatefulSet.apps "influxdb" is invalid: spec: Forbidden: updates to statefulset spec for fields other than 'replicas', 'template', 'updateStrategy', 'persistentVolumeClaimRetentionPolicy' and 'minReadySeconds' are forbidden

https://kubernetes.io/docs/tutorials/stateful-application/basic-stateful-set/#cascading-delete

Use kubectl delete to delete the StatefulSet. Make sure to supply the --cascade=orphan parameter to the command. This parameter tells Kubernetes to only delete the StatefulSet, and to not delete any of its Pods.

https://mongodb97.rssing.com/chan-17907102/latest.php resizing statefulset

https://github.com/elastic/helm-charts/issues/893

https://github.com/kubernetes/enhancements/pull/3412

https://learn.microsoft.com/en-us/azure/azure-arc/data/resize-persistent-volume-claim