Kubernetes Persistent Volume Claim Manifest
Jump to navigation
Jump to search
Internal
Example
apiVersion: v1 kind: PersistentVolumeClaim metadata: name: pvc1 spec: accessModes: - RedWriteOnce storageClassName: test resources: requests: storage: 10 Gi ...
.spec Elements
The values in the .spec
section must match with the persistent volume it intends to bind with. Persistent volume's access mode, storage class name and capacity must match.