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

From wikieduonline
Jump to navigation Jump to search
 
(11 intermediate revisions by the same user not shown)
Line 26: Line 26:
  
  
  apiVersion: v1
+
  [[kubectl describe pvc]] yourpv
  kind: PersistentVolumeClaim
+
  {{kubectl describe pvc example}}
metadata:
 
  annotations:
 
    pv.kubernetes.io/bind-completed: "yes"
 
    pv.kubernetes.io/bound-by-controller: "yes"
 
    volume.beta.kubernetes.io/storage-provisioner: example.com/aws-efs
 
  creationTimestamp: "2022-10-27T15:10:12Z"
 
  finalizers:
 
  - kubernetes.io/pvc-protection
 
  managedFields:
 
  ...
 
    manager: kube-controller-manager
 
    operation: Update
 
    time: "2022-10-27T15:10:13Z"
 
  name: storagedbtemp
 
  namespace: tl-tool-prod
 
  resourceVersion: "719208361"
 
  selfLink: /api/v1/namespaces/tl-tool-prod/persistentvolumeclaims/storagedbtemp
 
  uid: b3295ba0-0000-123-123-1234567
 
spec:
 
  accessModes:
 
  - ReadWriteOnce
 
  resources:
 
    requests:
 
      storage: 5Gi
 
  storageClassName: efs
 
  volumeMode: Filesystem
 
  volumeName: pvc-1234-1234-1234-1234-123456789
 
status:
 
  accessModes:
 
  - ReadWriteOnce
 
  capacity:
 
    storage: 5Gi
 
  phase: Bound
 
  
 
== Errors ==
 
== Errors ==
 
* <code>[[FailedScheduling]] .../... [[Pod has unbound immediate PersistentVolumeClaims]]</code>
 
* <code>[[FailedScheduling]] .../... [[Pod has unbound immediate PersistentVolumeClaims]]</code>
 +
* Warning  ClaimLost          [[persistentvolumeclaim/]]yourclaim  [[Bound claim has lost reference to PersistentVolume]]. Data on the volume is lost!          [[Cluster has no ready nodes.]]
 +
* <code>0/7 nodes are available: 7 [[pod has unbound immediate PersistentVolumeClaims]]</code>
  
 
== Related terms ==
 
== Related terms ==
Line 79: Line 48:
 
* [[DiskPressure]]
 
* [[DiskPressure]]
 
* [[persistentvolumeclaim]] "yourpvname" [[not found]].
 
* [[persistentvolumeclaim]] "yourpvname" [[not found]].
 +
* [[Kubernetes Finalizers]]
  
 
== Activities ==
 
== Activities ==
 
* [[CKA v1.23]]: [[Understand persistent volume claims primitive]]
 
* [[CKA v1.23]]: [[Understand persistent volume claims primitive]]
 
* [[Create a PersistentVolumeClaim]]
 
* [[Create a PersistentVolumeClaim]]
 +
* [[Create a new volume using: kind: PersistentVolumeClaim]]
 +
 
* Read https://cloud.google.com/kubernetes-engine/docs/concepts/persistent-volumes
 
* Read https://cloud.google.com/kubernetes-engine/docs/concepts/persistent-volumes
  

Latest revision as of 11:52, 2 February 2024

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[edit]

Examples[edit]

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


kubectl describe pvc yourpv
 apiVersion: v1
kind: PersistentVolumeClaim
metadata:
 annotations:
   pv.kubernetes.io/bind-completed: "yes"
   pv.kubernetes.io/bound-by-controller: "yes"
   volume.beta.kubernetes.io/storage-provisioner: example.com/aws-efs
 creationTimestamp: "2022-10-27T15:10:12Z"
 finalizers:
 - kubernetes.io/pvc-protection
 managedFields:
 ...
   manager: kube-controller-manager
   operation: Update
   time: "2022-10-27T15:10:13Z"
 name: yourpv
 namespace: mynamespace
 resourceVersion: "719208361"
 [[selfLink: /api/v1/namespaces/mynamespace/persistentvolumeclaims/myvoy
 uid: b3295ba0-0000-123-123-1234567
spec:
 accessModes:
 - ReadWriteOnce
 resources:
   requests:
     storage: 5Gi
 storageClassName: efs
 volumeMode: Filesystem
 volumeName: pvc-1234-1234-1234-1234-123456789
status:
 accessModes:
 - ReadWriteOnce
 capacity:
   storage: 5Gi
 phase: Bound

Errors[edit]

Related terms[edit]

Activities[edit]

See also[edit]

Advertising: