Difference between revisions of "Statefulset expand pvc"

From UVOO Tech Wiki
Jump to navigation Jump to search
Line 10: Line 10:
 
kubectl -n influxdb exec -it influxdb-0 -- df -h | grep influx
 
kubectl -n influxdb exec -it influxdb-0 -- df -h | 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://mongodb97.rssing.com/chan-17907102/latest.php  resizing statefulset
 +
 +
https://github.com/elastic/helm-charts/issues/893
 +
 +
https://github.com/kubernetes/enhancements/pull/3412

Revision as of 03:15, 7 November 2022

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 restart sts --cascade=orphan influxdb -n influxdb
kubectl -n influxdb exec -it influxdb-0 -- df -h | 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://mongodb97.rssing.com/chan-17907102/latest.php resizing statefulset

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

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