Difference between revisions of "Kubernetes Persistent Volume Claim (PVC)"

From wikieduonline
Jump to navigation Jump to search
Line 3: Line 3:
 
* <code>[[kubectl describe pvc]] mysql-pv-claim</code>
 
* <code>[[kubectl describe pvc]] mysql-pv-claim</code>
 
* <code>[[kubectl describe pvc grafana]]</code>
 
* <code>[[kubectl describe pvc grafana]]</code>
 +
* <code>[[kubectl patch pvc]]</code>
  
 
  [[kind: PersistentVolumeClaim]]
 
  [[kind: PersistentVolumeClaim]]

Revision as of 06:56, 23 November 2022

kind: PersistentVolumeClaim
kind: PersistentVolume
kind: StorageClass
error: persistentvolumeclaims "your-elasticsearch-master-0" could not be patched: persistentvolumeclaims "your-elasticsearch-master-0" is forbidden: only dynamically provisioned pvc can be resized and the storageclass that provisions the pvc must support resize.

PVC types

Examples

Volume expansion

kind: PersistentVolumeClaim
apiVersion: v1
metadata:
  name: myclaim
spec:
  accessModes:
    - ReadWriteOnce
  resources:
    requests:
      storage: 1Gi # specify new size here
kubectl apply -f your_new_pvc.yml
persistentvolumeclaim/myclaim created

Related terms

Activities

See also

Advertising: