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

From wikieduonline
Jump to navigation Jump to search
Line 31: Line 31:
 
* <code>[[kubectl get volumesnapshot]]</code>
 
* <code>[[kubectl get volumesnapshot]]</code>
 
* [[Pod has unbound immediate PersistentVolumeClaims]]
 
* [[Pod has unbound immediate PersistentVolumeClaims]]
* [[K8up]]
+
* [[K8up Kubernetes Backup Operator]]
 
* <code>[[kind: Provisioner]]</code>
 
* <code>[[kind: Provisioner]]</code>
 
* <code>[[volumes:]]</code>
 
* <code>[[volumes:]]</code>

Revision as of 15:01, 20 September 2023

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.
ProvisioningFailed

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: