Difference between revisions of "Kubernetes HostPath volume provider"
Jump to navigation
Jump to search
Line 2: | Line 2: | ||
https://kubernetes.io/docs/concepts/storage/volumes/#hostpath | https://kubernetes.io/docs/concepts/storage/volumes/#hostpath | ||
+ | |||
+ | apiVersion: v1 | ||
+ | kind: PersistentVolume | ||
+ | metadata: | ||
+ | name: pv0001 | ||
+ | spec: | ||
+ | accessModes: | ||
+ | - ReadWriteOnce | ||
+ | capacity: | ||
+ | storage: 5Gi | ||
+ | hostPath: | ||
+ | path: /data/pv0001/ | ||
+ | |||
Revision as of 18:57, 22 October 2023
https://kubernetes.io/docs/concepts/storage/volumes/#hostpath
apiVersion: v1 kind: PersistentVolume metadata: name: pv0001 spec: accessModes: - ReadWriteOnce capacity: storage: 5Gi hostPath: path: /data/pv0001/
cephfs configMap iscsi local https://kubernetes.io/docs/concepts/storage/volumes/#local nfs https://kubernetes.io/docs/concepts/storage/volumes/#nfs persistentVolumeClaim https://kubernetes.io/docs/concepts/storage/volumes/#persistentVolumeClaim secret csi https://kubernetes.io/docs/concepts/storage/volumes/#csi
Related
- Kubernetes Persistent Volumes (PV)
- Minikube:
k8s.io/minikube-hostpath
, supported of the box. - subPath https://kubernetes.io/docs/concepts/storage/volumes/#using-subpath
See also
- Kubernetes storage, storage classes, PersistentVolume (PV), PVC, CSI,
kind: StorageClass, kind: PersistentVolumeClaim, kind: PersistentVolume
,kubectl [ get | describe | edit ] pvc
,volumeClaimTemplates:
,kubectl patch pv
,FailedMount
, Volume Expansion, Volume Cloning, snapshots, ExtraVolumes, NotTriggerScaleUp,volumePVCDataSource, AllowVolumeExpansion
, EKS storage, provisioner, Storage Capacity Tracking,VolumeBinding, VolumeClaimTemplate, storage.k8s.io
, CKA Storage, DoKC, EmptyDir, Volume populators,storageclass.kubernetes.io
Advertising: