Difference between revisions of "Kind: PersistentVolumeClaim"

From wikieduonline
Jump to navigation Jump to search
Line 4: Line 4:
 
{{PVC expansion}}
 
{{PVC expansion}}
  
 +
{{kind: PersistentVolumeClaim}}
  
 
* [[StorageClassName]]
 
* [[StorageClassName]]

Revision as of 11:53, 2 February 2024

Kubernetes Persistent Volume Claim (PVC)

kind: PersistentVolumeClaim
apiVersion: v1
metadata:
  name: myclaim
spec:
  accessModes:
    - ReadWriteOnce
  resources:
    requests:
      storage: 1Gi # specify new size here
 apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: your-pvc
spec:
  accessModes:
    - ReadWriteOnce
  resources:
    requests:

Errors

error: error validating "yourfile": error validating data: 

[ ValidationError(PersistentVolumeClaim.metadata.finalizers): invalid type for 
io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta.finalizers: got "string", expected "array", 

ValidationError(PersistentVolumeClaim): unknown field "name" in 
io.k8s.api.core.v1.PersistentVolumeClaim ]; if you choose to ignore these errors, turn 

validation off with --validate=false


0/3 nodes are available: 3 persistentvolumeclaim "yourstorage" bound to non-existent persistentvolume

Related

See also

Advertising: