github.com/banzaicloud/operator-tools@v0.28.10/docs/types/volume_types.md (about) 1 # Kubernetes volume abstraction 2 ## Overview 3 Refers to different types of volumes to be mounted to pods: emptyDir, hostPath, pvc 4 5 Leverages core types from kubernetes/api/core/v1 6 7 ## Configuration 8 ## KubernetesVolume 9 10 ### host_path (*corev1.HostPathVolumeSource, optional) {#kubernetesvolume-host_path} 11 12 Deprecated, use hostPath 13 14 Default: - 15 16 ### hostPath (*corev1.HostPathVolumeSource, optional) {#kubernetesvolume-hostpath} 17 18 Default: - 19 20 ### emptyDir (*corev1.EmptyDirVolumeSource, optional) {#kubernetesvolume-emptydir} 21 22 Default: - 23 24 ### pvc (*PersistentVolumeClaim, optional) {#kubernetesvolume-pvc} 25 26 PersistentVolumeClaim defines the Spec and the Source at the same time. The PVC will be created with the configured spec and the name defined in the source. 27 28 Default: - 29 30 31 ## PersistentVolumeClaim 32 33 ### spec (corev1.PersistentVolumeClaimSpec, optional) {#persistentvolumeclaim-spec} 34 35 Default: - 36 37 ### source (corev1.PersistentVolumeClaimVolumeSource, optional) {#persistentvolumeclaim-source} 38 39 Default: - 40 41