Difference between revisions of "AllowVolumeExpansion"

From wikieduonline
Jump to navigation Jump to search
Line 30: Line 30:
 
  allowVolumeExpansion: true
 
  allowVolumeExpansion: true
 
  reclaimPolicy: Delete
 
  reclaimPolicy: Delete
 +
 +
== Related ==
 +
[[Kubernetes Volume Expansion]]
  
  

Revision as of 10:39, 7 November 2022

gcePersistentDisk (Kubernetes.io/gce-pd)	1.11 (Jun 2018)
kubectl patch pvc elasticsearch-master-elasticsearch-master-0 -p '{"spec":{"resources":{"requests":{"storage":"35Gi"}}}}'
persistentvolumeclaim/elasticsearch-master-elasticsearch-master-0 patched
https://www.gooksu.com/2022/08/how-to-increase-space-for-your-elasticsearch-instances-in-k8s-on-eck/


kubectl get storageclass
NAME                 PROVISIONER            RECLAIMPOLICY   VOLUMEBINDINGMODE   ALLOWVOLUMEEXPANSION   AGE
standard (default)   kubernetes.io/gce-pd   Delete          Immediate           false                  3y220d
NAME                 PROVISIONER             RECLAIMPOLICY   VOLUMEBINDINGMODE      ALLOWVOLUMEEXPANSION   AGE
standard (default)   kubernetes.io/gce-pd    Delete          Immediate              true                   461d


https://kubernetes.io/blog/2018/07/12/resizing-persistent-volumes-using-kubernetes/ ExpandInUsePersistentVolumes. It is supported by the in-tree volume plugins GCE-PD, AWS-EBS, Cinder, and Ceph RB


apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
  name: standard
parameters:
  type: pd-standard
provisioner: kubernetes.io/gce-pd
allowVolumeExpansion: true
reclaimPolicy: Delete

Related

Kubernetes Volume Expansion


See also

Advertising: