PersistentVolume
apiVersion: v1
import "k8s.io/api/core/v1"
PersistentVolume
PersistentVolume (PV) 是由管理员配置的存储资源。它类似于节点。更多信息:https://kubernetes.top/zh-cn/docs/concepts/storage/persistent-volumes
apiVersion: v1
kind: PersistentVolume
metadata (ObjectMeta)
标准对象的元数据。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
spec (PersistentVolumeSpec)
spec 定义了集群拥有的持久卷的规范。由管理员配置。更多信息:https://kubernetes.top/zh-cn/docs/concepts/storage/persistent-volumes#persistent-volumes
status (PersistentVolumeStatus)
status 表示持久卷的当前信息/状态。由系统填充。只读。更多信息:https://kubernetes.top/zh-cn/docs/concepts/storage/persistent-volumes#persistent-volumes
PersistentVolumeSpec
PersistentVolumeSpec 是持久卷的规范。
accessModes ([]string)
原子操作:将在合并期间被替换
accessModes 包含卷可以挂载的所有方式。更多信息:https://kubernetes.top/zh-cn/docs/concepts/storage/persistent-volumes#access-modes
capacity (map[string]Quantity)
capacity 是持久卷的资源和容量的描述。更多信息:https://kubernetes.top/zh-cn/docs/concepts/storage/persistent-volumes#capacity
claimRef (ObjectReference)
claimRef 是 PersistentVolume 和 PersistentVolumeClaim 之间双向绑定的组成部分。绑定时预期为非 nil。claim.VolumeName 是 PV 和 PVC 之间的权威绑定。更多信息:https://kubernetes.top/zh-cn/docs/concepts/storage/persistent-volumes#binding
mountOptions ([]string)
原子操作:将在合并期间被替换
mountOptions 是挂载选项的列表,例如 ["ro", "soft"]。未验证 - 如果其中一个无效,则挂载将直接失败。更多信息:https://kubernetes.top/zh-cn/docs/concepts/storage/persistent-volumes/#mount-options
nodeAffinity (VolumeNodeAffinity)
nodeAffinity 定义了限制可以从哪些节点访问此卷的约束。此字段会影响使用此卷的 Pod 的调度。
VolumeNodeAffinity 定义了限制可以从哪些节点访问此卷的约束。
nodeAffinity.required (NodeSelector)
required 指定必须满足的硬节点约束。
节点选择器表示一个或多个标签查询在一组节点上的结果的并集;也就是说,它表示由节点选择器术语表示的选择器的 OR。
nodeAffinity.required.nodeSelectorTerms ([]NodeSelectorTerm), 必需
原子操作:将在合并期间被替换
必需。节点选择器术语的列表。这些术语是 OR 关系。
一个空或空的节点选择器术语不匹配任何对象。它们的条件是 AND 关系。TopologySelectorTerm 类型实现了 NodeSelectorTerm 的子集。
nodeAffinity.required.nodeSelectorTerms.matchExpressions ([]NodeSelectorRequirement)
原子操作:将在合并期间被替换
按节点的标签列出的节点选择器要求列表。
nodeAffinity.required.nodeSelectorTerms.matchFields ([]NodeSelectorRequirement)
原子操作:将在合并期间被替换
按节点的字段列出的节点选择器要求列表。
persistentVolumeReclaimPolicy (string)
persistentVolumeReclaimPolicy 定义了当持久卷从其声明中释放时会发生什么。有效选项包括 Retain(手动创建的 PersistentVolume 的默认值)、Delete(动态配置的 PersistentVolume 的默认值)和 Recycle(已弃用)。Recycle 必须由该 PersistentVolume 下的基础卷插件支持。更多信息:https://kubernetes.top/zh-cn/docs/concepts/storage/persistent-volumes#reclaiming
storageClassName (string)
storageClassName 是此持久卷所属的 StorageClass 的名称。空值表示此卷不属于任何 StorageClass。
volumeAttributesClassName (string)
此持久卷所属的 VolumeAttributesClass 的名称。不允许使用空值。如果未设置此字段,则表示此卷不属于任何 VolumeAttributesClass。此字段是可变的,并且可以在卷成功更新到新类后由 CSI 驱动程序更改。对于未绑定的 PersistentVolume,volumeAttributesClassName 将在绑定过程中与未绑定的 PersistentVolumeClaims 匹配。这是一个 Beta 字段,需要启用 VolumeAttributesClass 功能(默认关闭)。
volumeMode (string)
volumeMode 定义了卷是打算与格式化的文件系统一起使用,还是保持原始块状态。当未包含在 spec 中时,暗示为 Filesystem 的值。
本地
hostPath (HostPathVolumeSource)
hostPath 表示主机上的一个目录。由开发人员或测试人员配置。这仅适用于单节点开发和测试!在任何情况下都不支持主机上的存储,并且在多节点集群中将无法工作。更多信息:https://kubernetes.top/zh-cn/docs/concepts/storage/volumes#hostpath
表示映射到 Pod 中的主机路径。主机路径卷不支持所有权管理或 SELinux 重新标记。
hostPath.path (string), 必需
主机上目录的路径。如果该路径是符号链接,它将跟随链接到实际路径。更多信息:https://kubernetes.top/zh-cn/docs/concepts/storage/volumes#hostpath
hostPath.type (string)
HostPath 卷的类型。默认为 ""。更多信息:https://kubernetes.top/zh-cn/docs/concepts/storage/volumes#hostpath
local (LocalVolumeSource)
local 表示具有节点亲和性的直接连接存储
Local 表示具有节点亲和性的直接连接存储(Beta 功能)
local.path (string), 必需
节点上卷的完整路径。它可以是目录或块设备(磁盘、分区等)。
local.fsType (string)
fsType 是要挂载的文件系统类型。仅当 Path 是块设备时才适用。必须是主机操作系统支持的文件系统类型。例如,“ext4”、“xfs”、“ntfs”。默认值是如果未指定则自动选择文件系统。
持久卷
awsElasticBlockStore (AWSElasticBlockStoreVolumeSource)
awsElasticBlockStore 表示一个 AWS 磁盘资源,该资源已连接到 kubelet 的主机并暴露给 Pod。更多信息:https://kubernetes.top/zh-cn/docs/concepts/storage/volumes#awselasticblockstore
AWS EBS 磁盘必须在挂载到容器之前存在。磁盘还必须与 kubelet 位于同一 AWS 区域中。AWS EBS 磁盘只能作为读/写挂载一次。AWS EBS 卷支持所有权管理和 SELinux 重新标记。*
awsElasticBlockStore.volumeID (string), 必需
volumeID 是 AWS(Amazon EBS 卷)中持久磁盘资源的唯一 ID。更多信息:https://kubernetes.top/zh-cn/docs/concepts/storage/volumes#awselasticblockstore
awsElasticBlockStore.fsType (string)
fsType 是您要挂载的卷的文件系统类型。提示:请确保文件系统类型受主机操作系统支持。示例:“ext4”、“xfs”、“ntfs”。如果未指定,则隐式推断为“ext4”。更多信息:https://kubernetes.top/zh-cn/docs/concepts/storage/volumes#awselasticblockstore
awsElasticBlockStore.partition (int32)
partition 是您要挂载的卷中的分区。如果省略,则默认按卷名称挂载。示例:对于卷 /dev/sda1,您将分区指定为“1”。类似地,/dev/sda 的卷分区为“0”(或者您可以将属性留空)。
awsElasticBlockStore.readOnly (boolean)
readOnly 值 true 将强制 VolumeMounts 中的 readOnly 设置。更多信息:https://kubernetes.top/zh-cn/docs/concepts/storage/volumes#awselasticblockstore
azureDisk (AzureDiskVolumeSource)
azureDisk 表示主机上的 Azure 数据磁盘挂载,并绑定挂载到 Pod。
AzureDisk 代表主机上的 Azure 数据磁盘挂载,并绑定挂载到 pod。
azureDisk.diskName (string),必需
diskName 是 blob 存储中数据磁盘的名称
azureDisk.diskURI (string),必需
diskURI 是 blob 存储中数据磁盘的 URI
azureDisk.cachingMode (string)
cachingMode 是主机缓存模式:None、Read Only、Read Write。
azureDisk.fsType (string)
fsType 是要挂载的文件系统类型。必须是主机操作系统支持的文件系统类型。例如: “ext4”、“xfs”、“ntfs”。如果未指定,则隐式推断为 “ext4”。
azureDisk.kind (string)
kind 的预期值是:Shared:每个存储帐户多个 blob 磁盘;Dedicated:每个存储帐户单个 blob 磁盘;Managed:Azure 托管数据磁盘(仅在托管可用性集中)。默认为 shared。
azureDisk.readOnly (boolean)
readOnly 默认为 false(读/写)。此处的 ReadOnly 将强制执行 VolumeMounts 中的 ReadOnly 设置。
azureFile (AzureFilePersistentVolumeSource)
azureFile 代表主机上的 Azure 文件服务挂载,并绑定挂载到 pod。
AzureFile 代表主机上的 Azure 文件服务挂载,并绑定挂载到 pod。
azureFile.secretName (string),必需
secretName 是包含 Azure 存储帐户名称和密钥的 secret 的名称
azureFile.shareName (string),必需
shareName 是 Azure 共享名称
azureFile.readOnly (boolean)
readOnly 默认为 false(读/写)。此处的 ReadOnly 将强制执行 VolumeMounts 中的 ReadOnly 设置。
azureFile.secretNamespace (string)
secretNamespace 是包含 Azure 存储帐户名称和密钥的 secret 的命名空间,默认为与 Pod 相同的命名空间
cephfs (CephFSPersistentVolumeSource)
cephFS 代表主机上与 pod 的生命周期共享的 Ceph FS 挂载
代表一个持续 pod 生命周期的 Ceph 文件系统挂载。Cephfs 卷不支持所有权管理或 SELinux 重新标记。
cephfs.monitors ([]string),必需
原子操作:将在合并期间被替换
monitors 是必需的:Monitors 是 Ceph 监视器的集合。更多信息:https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it
cephfs.path (string)
path 是可选的:用作挂载根目录,而不是完整的 Ceph 树,默认为 /
cephfs.readOnly (boolean)
readOnly 是可选的:默认为 false(读/写)。此处的 ReadOnly 将强制执行 VolumeMounts 中的 ReadOnly 设置。更多信息:https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it
cephfs.secretFile (string)
secretFile 是可选的:SecretFile 是用户密钥环的路径,默认为 /etc/ceph/user.secret。更多信息:https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it
cephfs.secretRef (SecretReference)
secretRef 是可选的:SecretRef 是对用户身份验证 secret 的引用,默认为空。更多信息:https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it
SecretReference 代表 Secret 引用。它具有足够的信息来检索任何命名空间中的 secret
cephfs.secretRef.name (string)
name 在命名空间内是唯一的,用于引用 secret 资源。
cephfs.secretRef.namespace (string)
namespace 定义 secret 名称必须在其中唯一的空间。
cephfs.user (string)
user 是可选的:User 是 rados 用户名,默认为 admin。更多信息:https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it
cinder (CinderPersistentVolumeSource)
cinder 代表附加到 kubelets 主机并挂载的 cinder 卷。更多信息:https://examples.k8s.io/mysql-cinder-pd/README.md
代表 Openstack 中的 cinder 卷资源。在挂载到容器之前,必须存在 Cinder 卷。该卷还必须与 kubelet 位于同一区域。Cinder 卷支持所有权管理和 SELinux 重新标记。
cinder.volumeID (string),必需
volumeID 用于标识 cinder 中的卷。更多信息:https://examples.k8s.io/mysql-cinder-pd/README.md
cinder.fsType (string)
fsType 要挂载的文件系统类型。必须是主机操作系统支持的文件系统类型。示例:“ext4”、“xfs”、“ntfs”。如果未指定,则隐式推断为 “ext4”。更多信息:https://examples.k8s.io/mysql-cinder-pd/README.md
cinder.readOnly (boolean)
readOnly 是可选的:默认为 false(读/写)。此处的 ReadOnly 将强制执行 VolumeMounts 中的 ReadOnly 设置。更多信息:https://examples.k8s.io/mysql-cinder-pd/README.md
cinder.secretRef (SecretReference)
secretRef 是可选的:指向包含用于连接到 OpenStack 的参数的 secret 对象。
SecretReference 代表 Secret 引用。它具有足够的信息来检索任何命名空间中的 secret
cinder.secretRef.name (string)
name 在命名空间内是唯一的,用于引用 secret 资源。
cinder.secretRef.namespace (string)
namespace 定义 secret 名称必须在其中唯一的空间。
csi (CSIPersistentVolumeSource)
csi 代表由外部 CSI 驱动程序处理的存储(Beta 功能)。
csi.driver (string),必需
driver 是用于此卷的驱动程序的名称。必需。
csi.volumeHandle (string),必需
volumeHandle 是 CSI 卷插件的 CreateVolume 返回的唯一卷名称,用于在所有后续调用中引用卷。必需。
csi.controllerExpandSecretRef (SecretReference)
controllerExpandSecretRef 是对包含要传递给 CSI 驱动程序以完成 CSI ControllerExpandVolume 调用的敏感信息的 secret 对象的引用。此字段是可选的,如果不需要 secret,则可以为空。如果 secret 对象包含多个 secret,则会传递所有 secret。
SecretReference 代表 Secret 引用。它具有足够的信息来检索任何命名空间中的 secret
csi.controllerExpandSecretRef.name (string)
name 在命名空间内是唯一的,用于引用 secret 资源。
csi.controllerExpandSecretRef.namespace (string)
namespace 定义 secret 名称必须在其中唯一的空间。
csi.controllerPublishSecretRef (SecretReference)
controllerPublishSecretRef 是对包含要传递给 CSI 驱动程序以完成 CSI ControllerPublishVolume 和 ControllerUnpublishVolume 调用的敏感信息的 secret 对象的引用。此字段是可选的,如果不需要 secret,则可以为空。如果 secret 对象包含多个 secret,则会传递所有 secret。
SecretReference 代表 Secret 引用。它具有足够的信息来检索任何命名空间中的 secret
csi.controllerPublishSecretRef.name (string)
name 在命名空间内是唯一的,用于引用 secret 资源。
csi.controllerPublishSecretRef.namespace (string)
namespace 定义 secret 名称必须在其中唯一的空间。
csi.fsType (string)
要挂载的 fsType。必须是主机操作系统支持的文件系统类型。例如:“ext4”、“xfs”、“ntfs”。
csi.nodeExpandSecretRef (SecretReference)
nodeExpandSecretRef 是对包含要传递给 CSI 驱动程序以完成 CSI NodeExpandVolume 调用的敏感信息的 secret 对象的引用。此字段是可选的,如果不需要 secret,则可以省略。如果 secret 对象包含多个 secret,则会传递所有 secret。
SecretReference 代表 Secret 引用。它具有足够的信息来检索任何命名空间中的 secret
csi.nodeExpandSecretRef.name (string)
name 在命名空间内是唯一的,用于引用 secret 资源。
csi.nodeExpandSecretRef.namespace (string)
namespace 定义 secret 名称必须在其中唯一的空间。
csi.nodePublishSecretRef (SecretReference)
nodePublishSecretRef 是对包含要传递给 CSI 驱动程序以完成 CSI NodePublishVolume 和 NodeUnpublishVolume 调用的敏感信息的 secret 对象的引用。此字段是可选的,如果不需要 secret,则可以为空。如果 secret 对象包含多个 secret,则会传递所有 secret。
SecretReference 代表 Secret 引用。它具有足够的信息来检索任何命名空间中的 secret
csi.nodePublishSecretRef.name (string)
name 在命名空间内是唯一的,用于引用 secret 资源。
csi.nodePublishSecretRef.namespace (string)
namespace 定义 secret 名称必须在其中唯一的空间。
csi.nodeStageSecretRef (SecretReference)
nodeStageSecretRef 是对包含要传递给 CSI 驱动程序以完成 CSI NodeStageVolume 和 NodeStageVolume 和 NodeUnstageVolume 调用的敏感信息的 secret 对象的引用。此字段是可选的,如果不需要 secret,则可以为空。如果 secret 对象包含多个 secret,则会传递所有 secret。
SecretReference 代表 Secret 引用。它具有足够的信息来检索任何命名空间中的 secret
csi.nodeStageSecretRef.name (string)
name 在命名空间内是唯一的,用于引用 secret 资源。
csi.nodeStageSecretRef.namespace (string)
namespace 定义 secret 名称必须在其中唯一的空间。
csi.readOnly (boolean)
要传递给 ControllerPublishVolumeRequest 的 readOnly 值。默认为 false(读/写)。
csi.volumeAttributes (map[string]string)
要发布的卷的 volumeAttributes。
fc (FCVolumeSource)
fc 代表附加到 kubelet 主机的光纤通道资源,然后将其公开给 pod。
代表光纤通道卷。光纤通道卷只能以读/写方式挂载一次。光纤通道卷支持所有权管理和 SELinux 重新标记。
fc.fsType (string)
fsType 是要挂载的文件系统类型。必须是主机操作系统支持的文件系统类型。例如:“ext4”、“xfs”、“ntfs”。如果未指定,则隐式推断为 “ext4”。
fc.lun (int32)
lun 是可选的:FC 目标 lun 号
fc.readOnly (boolean)
readOnly 是可选的:默认为 false(读/写)。此处的 ReadOnly 将强制执行 VolumeMounts 中的 ReadOnly 设置。
fc.targetWWNs ([]string)
原子操作:将在合并期间被替换
targetWWNs 是可选的:FC 目标全球名称 (WWN)
fc.wwids ([]string)
原子操作:将在合并期间被替换
wwids 可选:FC 卷全球标识符 (wwid) 必须设置 wwids 或 targetWWNs 和 lun 的组合,但不能同时设置两者。
flexVolume (FlexPersistentVolumeSource)
flexVolume 代表使用基于 exec 的插件进行配置/附加的通用卷资源。
FlexPersistentVolumeSource 代表使用基于 exec 的插件进行配置/附加的通用持久卷资源。
flexVolume.driver (string),必需
driver 是用于此卷的驱动程序的名称。
flexVolume.fsType (string)
fsType 是要挂载的文件系统类型。必须是主机操作系统支持的文件系统类型。例如:“ext4”、“xfs”、“ntfs”。默认文件系统取决于 FlexVolume 脚本。
flexVolume.options (map[string]string)
options 是可选的:此字段包含任何额外的命令选项。
flexVolume.readOnly (boolean)
readOnly 是可选的:默认为 false(读/写)。此处的 ReadOnly 将强制执行 VolumeMounts 中的 ReadOnly 设置。
flexVolume.secretRef (SecretReference)
secretRef 是可选的:SecretRef 是对包含要传递给插件脚本的敏感信息的 secret 对象的引用。如果未指定 secret 对象,则可以为空。如果 secret 对象包含多个 secret,则会将所有 secret 传递给插件脚本。
SecretReference 代表 Secret 引用。它具有足够的信息来检索任何命名空间中的 secret
flexVolume.secretRef.name (string)
name 在命名空间内是唯一的,用于引用 secret 资源。
flexVolume.secretRef.namespace (string)
namespace 定义 secret 名称必须在其中唯一的空间。
flocker (FlockerVolumeSource)
flocker 代表附加到 kubelet 主机并公开给 pod 以供使用的 Flocker 卷。这取决于 Flocker 控制服务是否正在运行
代表由 Flocker 代理挂载的 Flocker 卷。应设置 datasetName 和 datasetUUID 中的一个且只有一个。Flocker 卷不支持所有权管理或 SELinux 重新标记。
flocker.datasetName (string)
datasetName 是存储为元数据的数据集名称 -> 应将 Flocker 数据集上的名称视为已弃用
flocker.datasetUUID (string)
datasetUUID 是数据集的 UUID。这是 Flocker 数据集的唯一标识符
gcePersistentDisk (GCEPersistentDiskVolumeSource)
gcePersistentDisk 代表附加到 kubelet 主机并公开给 pod 的 GCE 磁盘资源。由管理员配置。更多信息:https://kubernetes.top/docs/concepts/storage/volumes#gcepersistentdisk
代表 Google Compute Engine 中的持久磁盘资源。
在挂载到容器之前,必须存在 GCE PD。该磁盘还必须与 kubelet 位于同一 GCE 项目和区域中。GCE PD 只能以读/写方式挂载一次或以只读方式挂载多次。GCE PD 支持所有权管理和 SELinux 重新标记。*
gcePersistentDisk.pdName (string),必需
pdName 是 GCE 中 PD 资源的唯一名称。用于标识 GCE 中的磁盘。更多信息:https://kubernetes.top/docs/concepts/storage/volumes#gcepersistentdisk
gcePersistentDisk.fsType (string)
fsType 是您要挂载的卷的文件系统类型。提示:请确保主机操作系统支持该文件系统类型。示例: "ext4"、"xfs"、"ntfs"。如果未指定,则隐式推断为 "ext4"。更多信息: https://kubernetes.top/docs/concepts/storage/volumes#gcepersistentdisk
gcePersistentDisk.partition (int32)
partition 是您要挂载的卷中的分区。如果省略,则默认按卷名称挂载。示例:对于卷 /dev/sda1,您将分区指定为 "1"。类似地,/dev/sda 的卷分区是 "0"(或者您可以将属性留空)。更多信息: https://kubernetes.top/docs/concepts/storage/volumes#gcepersistentdisk
gcePersistentDisk.readOnly (boolean)
这里的 readOnly 将强制 VolumeMounts 中的 ReadOnly 设置。默认为 false。更多信息: https://kubernetes.top/docs/concepts/storage/volumes#gcepersistentdisk
glusterfs (GlusterfsPersistentVolumeSource)
glusterfs 表示一个附加到主机并暴露给 Pod 的 Glusterfs 卷。由管理员配置。更多信息: https://examples.k8s.io/volumes/glusterfs/README.md
表示在 Pod 的生命周期内持续存在的 Glusterfs 挂载。Glusterfs 卷不支持所有权管理或 SELinux 重新标记。
glusterfs.endpoints (string),必需
endpoints 是详细说明 Glusterfs 拓扑的端点名称。更多信息: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod
glusterfs.path (string),必需
path 是 Glusterfs 卷路径。更多信息: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod
glusterfs.endpointsNamespace (string)
endpointsNamespace 是包含 Glusterfs 端点的命名空间。如果此字段为空,则 EndpointNamespace 默认为与绑定的 PVC 相同的命名空间。更多信息: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod
glusterfs.readOnly (boolean)
这里的 readOnly 将强制 Glusterfs 卷以只读权限挂载。默认为 false。更多信息: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod
iscsi (ISCSIPersistentVolumeSource)
iscsi 表示附加到 kubelet 主机并暴露给 Pod 的 ISCSI 磁盘资源。由管理员配置。
ISCSIPersistentVolumeSource 表示 ISCSI 磁盘。ISCSI 卷只能以读/写一次的方式挂载。ISCSI 卷支持所有权管理和 SELinux 重新标记。
iscsi.iqn (string),必需
iqn 是目标 iSCSI 限定名称。
iscsi.lun (int32),必需
lun 是 iSCSI 目标 Lun 号。
iscsi.targetPortal (string),必需
targetPortal 是 iSCSI 目标门户。门户可以是 IP 或 ip_addr:port,如果端口不是默认端口(通常是 TCP 端口 860 和 3260)。
iscsi.chapAuthDiscovery (boolean)
chapAuthDiscovery 定义是否支持 iSCSI 发现 CHAP 身份验证
iscsi.chapAuthSession (boolean)
chapAuthSession 定义是否支持 iSCSI 会话 CHAP 身份验证
iscsi.fsType (string)
fsType 是您要挂载的卷的文件系统类型。提示:请确保主机操作系统支持该文件系统类型。示例: "ext4"、"xfs"、"ntfs"。如果未指定,则隐式推断为 "ext4"。更多信息: https://kubernetes.top/docs/concepts/storage/volumes#iscsi
iscsi.initiatorName (string)
initiatorName 是自定义 iSCSI 发起程序名称。如果同时指定 initiatorName 和 iscsiInterface,则将为连接创建新的 iSCSI 接口 <target portal>:<volume name>。
iscsi.iscsiInterface (string)
iscsiInterface 是使用 iSCSI 传输的接口名称。默认为 'default' (tcp)。
iscsi.portals ([]string)
原子操作:将在合并期间被替换
portals 是 iSCSI 目标门户列表。门户可以是 IP 或 ip_addr:port,如果端口不是默认端口(通常是 TCP 端口 860 和 3260)。
iscsi.readOnly (boolean)
这里的 readOnly 将强制 VolumeMounts 中的 ReadOnly 设置。默认为 false。
iscsi.secretRef (SecretReference)
secretRef 是 iSCSI 目标和发起程序身份验证的 CHAP 密钥
SecretReference 代表 Secret 引用。它具有足够的信息来检索任何命名空间中的 secret
iscsi.secretRef.name (string)
name 在命名空间内是唯一的,用于引用 secret 资源。
iscsi.secretRef.namespace (string)
namespace 定义 secret 名称必须在其中唯一的空间。
nfs (NFSVolumeSource)
nfs 表示主机上的 NFS 挂载。由管理员配置。更多信息: https://kubernetes.top/docs/concepts/storage/volumes#nfs
表示在 Pod 的生命周期内持续存在的 NFS 挂载。NFS 卷不支持所有权管理或 SELinux 重新标记。
nfs.path (string),必需
NFS 服务器导出的路径。更多信息: https://kubernetes.top/docs/concepts/storage/volumes#nfs
nfs.server (string),必需
server 是 NFS 服务器的主机名或 IP 地址。更多信息: https://kubernetes.top/docs/concepts/storage/volumes#nfs
nfs.readOnly (boolean)
这里的 readOnly 将强制 NFS 导出以只读权限挂载。默认为 false。更多信息: https://kubernetes.top/docs/concepts/storage/volumes#nfs
photonPersistentDisk (PhotonPersistentDiskVolumeSource)
photonPersistentDisk 表示附加并挂载在 kubelet 主机上的 PhotonController 持久磁盘
photonPersistentDisk.pdID (string),必需
pdID 是标识 Photon Controller 持久磁盘的 ID
photonPersistentDisk.fsType (string)
fsType 是要挂载的文件系统类型。必须是主机操作系统支持的文件系统类型。例如:“ext4”、“xfs”、“ntfs”。如果未指定,则隐式推断为 “ext4”。
portworxVolume (PortworxVolumeSource)
portworxVolume 表示附加并挂载在 kubelet 主机上的 portworx 卷
PortworxVolumeSource 表示 Portworx 卷资源。
portworxVolume.volumeID (string),必需
volumeID 唯一标识 Portworx 卷
portworxVolume.fsType (string)
fSType 表示要挂载的文件系统类型。必须是主机操作系统支持的文件系统类型。例如: "ext4"、"xfs"。如果未指定,则隐式推断为 "ext4"。
portworxVolume.readOnly (boolean)
readOnly 默认为 false(读/写)。此处的 ReadOnly 将强制执行 VolumeMounts 中的 ReadOnly 设置。
quobyte (QuobyteVolumeSource)
quobyte 表示主机上的 Quobyte 挂载,该挂载与 Pod 的生命周期共享
表示在 Pod 的生命周期内持续存在的 Quobyte 挂载。Quobyte 卷不支持所有权管理或 SELinux 重新标记。
quobyte.registry (string),必需
registry 表示一个或多个 Quobyte 注册表服务,指定为字符串(主机:端口对)(多个条目用逗号分隔),它充当卷的中心注册表
quobyte.volume (string),必需
volume 是一个字符串,通过名称引用已创建的 Quobyte 卷。
quobyte.group (string)
用于映射卷访问的组。默认为无组
quobyte.readOnly (boolean)
这里的 readOnly 将强制 Quobyte 卷以只读权限挂载。默认为 false。
quobyte.tenant (string)
在后端拥有给定 Quobyte 卷的租户。与动态配置的 Quobyte 卷一起使用,值由插件设置
quobyte.user (string)
用于映射卷访问的用户。默认为 serivceaccount 用户
rbd (RBDPersistentVolumeSource)
rbd 表示主机上与 Pod 的生命周期共享的 Rados 块设备挂载。更多信息: https://examples.k8s.io/volumes/rbd/README.md
表示在 Pod 的生命周期内持续存在的 Rados 块设备挂载。RBD 卷支持所有权管理和 SELinux 重新标记。
rbd.image (string),必需
image 是 rados 镜像名称。更多信息: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it
rbd.monitors ([]string),必需
原子操作:将在合并期间被替换
monitors 是 Ceph 监视器的集合。更多信息: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it
rbd.fsType (string)
fsType 是您要挂载的卷的文件系统类型。提示:请确保主机操作系统支持该文件系统类型。示例: "ext4"、"xfs"、"ntfs"。如果未指定,则隐式推断为 "ext4"。更多信息: https://kubernetes.top/docs/concepts/storage/volumes#rbd
rbd.keyring (string)
keyring 是 RBDUser 的密钥环路径。默认为 /etc/ceph/keyring。更多信息: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it
rbd.pool (string)
pool 是 rados 池名称。默认为 rbd。更多信息: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it
rbd.readOnly (boolean)
这里的 readOnly 将强制 VolumeMounts 中的 ReadOnly 设置。默认为 false。更多信息: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it
rbd.secretRef (SecretReference)
secretRef 是 RBDUser 身份验证密钥的名称。如果提供,则覆盖密钥环。默认为 nil。更多信息: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it
SecretReference 代表 Secret 引用。它具有足够的信息来检索任何命名空间中的 secret
rbd.secretRef.name (string)
name 在命名空间内是唯一的,用于引用 secret 资源。
rbd.secretRef.namespace (string)
namespace 定义 secret 名称必须在其中唯一的空间。
rbd.user (string)
user 是 rados 用户名。默认为 admin。更多信息: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it
scaleIO (ScaleIOPersistentVolumeSource)
scaleIO 表示附加并挂载在 Kubernetes 节点上的 ScaleIO 持久卷。
ScaleIOPersistentVolumeSource 表示持久 ScaleIO 卷
scaleIO.gateway (string),必需
gateway 是 ScaleIO API 网关的主机地址。
scaleIO.secretRef (SecretReference),必需
secretRef 引用 ScaleIO 用户和其他敏感信息的密钥。如果未提供,则登录操作将失败。
SecretReference 代表 Secret 引用。它具有足够的信息来检索任何命名空间中的 secret
scaleIO.secretRef.name (string)
name 在命名空间内是唯一的,用于引用 secret 资源。
scaleIO.secretRef.namespace (string)
namespace 定义 secret 名称必须在其中唯一的空间。
scaleIO.system (string),必需
system 是 ScaleIO 中配置的存储系统的名称。
scaleIO.fsType (string)
fsType 是要挂载的文件系统类型。必须是主机操作系统支持的文件系统类型。例如: "ext4"、"xfs"、"ntfs"。默认为 "xfs"
scaleIO.protectionDomain (string)
protectionDomain 是配置存储的 ScaleIO 保护域的名称。
scaleIO.readOnly (boolean)
readOnly 默认为 false(读/写)。此处的 ReadOnly 将强制执行 VolumeMounts 中的 ReadOnly 设置。
scaleIO.sslEnabled (boolean)
sslEnabled 是启用/禁用与网关的 SSL 通信的标志,默认为 false
scaleIO.storageMode (string)
storageMode 指示卷的存储应该是 ThickProvisioned 还是 ThinProvisioned。默认为 ThinProvisioned。
scaleIO.storagePool (string)
storagePool 是与保护域关联的 ScaleIO 存储池。
scaleIO.volumeName (string)
volumeName 是 ScaleIO 系统中已创建的、与此卷源关联的卷的名称。
storageos (StorageOSPersistentVolumeSource)
storageOS 表示一个附加到 kubelet 主机并挂载到 Pod 中的 StorageOS 卷。更多信息:https://examples.k8s.io/volumes/storageos/README.md
storageos.fsType (字符串)
fsType 是要挂载的文件系统类型。必须是主机操作系统支持的文件系统类型。例如:“ext4”、“xfs”、“ntfs”。如果未指定,则隐式推断为 “ext4”。
storageos.readOnly (布尔值)
readOnly 默认为 false(读/写)。此处的 ReadOnly 将强制执行 VolumeMounts 中的 ReadOnly 设置。
storageos.secretRef (ObjectReference)
secretRef 指定用于获取 StorageOS API 凭据的 secret。如果未指定,将尝试使用默认值。
storageos.volumeName (字符串)
volumeName 是 StorageOS 卷的人类可读名称。卷名称在命名空间内是唯一的。
storageos.volumeNamespace (字符串)
volumeNamespace 指定 StorageOS 中卷的作用域。如果未指定命名空间,则将使用 Pod 的命名空间。这允许 Kubernetes 名称作用域在 StorageOS 中镜像,以实现更紧密的集成。将 VolumeName 设置为任何名称以覆盖默认行为。如果未在 StorageOS 中使用命名空间,则设置为“default”。将在 StorageOS 中创建不存在的命名空间。
vsphereVolume (VsphereVirtualDiskVolumeSource)
vsphereVolume 表示一个附加到 kubelet 主机并挂载在其上的 vSphere 卷
vsphereVolume.volumePath (字符串), 必需
volumePath 是标识 vSphere 卷 vmdk 的路径
vsphereVolume.fsType (字符串)
fsType 是要挂载的文件系统类型。必须是主机操作系统支持的文件系统类型。例如:“ext4”、“xfs”、“ntfs”。如果未指定,则隐式推断为“ext4”。
vsphereVolume.storagePolicyID (字符串)
storagePolicyID 是与 StoragePolicyName 关联的基于存储策略的管理 (SPBM) 配置文件 ID。
vsphereVolume.storagePolicyName (字符串)
storagePolicyName 是基于存储策略的管理 (SPBM) 配置文件名称。
PersistentVolumeStatus
PersistentVolumeStatus 是持久卷的当前状态。
lastPhaseTransitionTime (时间)
lastPhaseTransitionTime 是阶段从一个状态转换到另一个状态的时间,并且每次卷阶段转换时都会自动重置为当前时间。
Time 是对 time.Time 的封装,它支持正确地编组为 YAML 和 JSON。为 time 包提供的许多工厂方法提供了包装器。
message (字符串)
message 是一个人类可读的消息,指示有关卷处于此状态的原因的详细信息。
phase (字符串)
phase 指示卷是否可用、绑定到声明或由声明释放。更多信息:https://kubernetes.top/docs/concepts/storage/persistent-volumes#phase
reason (字符串)
reason 是一个简短的驼峰式字符串,描述任何故障,旨在用于机器解析和在 CLI 中整洁地显示。
PersistentVolumeList
PersistentVolumeList 是 PersistentVolume 项的列表。
apiVersion: v1
kind: PersistentVolumeList
metadata (ListMeta)
标准列表元数据。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
items ([]PersistentVolume), 必需
items 是持久卷的列表。更多信息:https://kubernetes.top/docs/concepts/storage/persistent-volumes
操作
get
读取指定的 PersistentVolume
HTTP 请求
GET /api/v1/persistentvolumes/{name}
参数
name (在路径中): 字符串, 必需
PersistentVolume 的名称
pretty (在查询中): 字符串
响应
200 (PersistentVolume): 成功
401: 未授权
get
读取指定的 PersistentVolume 的状态
HTTP 请求
GET /api/v1/persistentvolumes/{name}/status
参数
name (在路径中): 字符串, 必需
PersistentVolume 的名称
pretty (在查询中): 字符串
响应
200 (PersistentVolume): 成功
401: 未授权
list
列出或监视 PersistentVolume 类型的对象
HTTP 请求
GET /api/v1/persistentvolumes
参数
allowWatchBookmarks (在查询中): 布尔值
continue (在查询中): 字符串
fieldSelector (在查询中): 字符串
labelSelector (在查询中): 字符串
limit (在查询中): 整数
pretty (在查询中): 字符串
resourceVersion (在查询中): 字符串
resourceVersionMatch (在查询中): 字符串
sendInitialEvents (在查询中): 布尔值
timeoutSeconds (在查询中): 整数
watch (在查询中): 布尔值
响应
200 (PersistentVolumeList): 成功
401: 未授权
create
创建一个 PersistentVolume
HTTP 请求
POST /api/v1/persistentvolumes
参数
body: PersistentVolume, 必需
dryRun (在查询中): 字符串
fieldManager (在查询中): 字符串
fieldValidation (在查询中): 字符串
pretty (在查询中): 字符串
响应
200 (PersistentVolume): 成功
201 (PersistentVolume): 已创建
202 (PersistentVolume): 已接受
401: 未授权
update
替换指定的 PersistentVolume
HTTP 请求
PUT /api/v1/persistentvolumes/{name}
参数
name (在路径中): 字符串, 必需
PersistentVolume 的名称
body: PersistentVolume, 必需
dryRun (在查询中): 字符串
fieldManager (在查询中): 字符串
fieldValidation (在查询中): 字符串
pretty (在查询中): 字符串
响应
200 (PersistentVolume): 成功
201 (PersistentVolume): 已创建
401: 未授权
update
替换指定的 PersistentVolume 的状态
HTTP 请求
PUT /api/v1/persistentvolumes/{name}/status
参数
name (在路径中): 字符串, 必需
PersistentVolume 的名称
body: PersistentVolume, 必需
dryRun (在查询中): 字符串
fieldManager (在查询中): 字符串
fieldValidation (在查询中): 字符串
pretty (在查询中): 字符串
响应
200 (PersistentVolume): 成功
201 (PersistentVolume): 已创建
401: 未授权
patch
部分更新指定的 PersistentVolume
HTTP 请求
PATCH /api/v1/persistentvolumes/{name}
参数
name (在路径中): 字符串, 必需
PersistentVolume 的名称
body: Patch, 必需
dryRun (在查询中): 字符串
fieldManager (在查询中): 字符串
fieldValidation (在查询中): 字符串
force (在查询中): 布尔值
pretty (在查询中): 字符串
响应
200 (PersistentVolume): 成功
201 (PersistentVolume): 已创建
401: 未授权
patch
部分更新指定的 PersistentVolume 的状态
HTTP 请求
PATCH /api/v1/persistentvolumes/{name}/status
参数
name (在路径中): 字符串, 必需
PersistentVolume 的名称
body: Patch, 必需
dryRun (在查询中): 字符串
fieldManager (在查询中): 字符串
fieldValidation (在查询中): 字符串
force (在查询中): 布尔值
pretty (在查询中): 字符串
响应
200 (PersistentVolume): 成功
201 (PersistentVolume): 已创建
401: 未授权
delete
删除一个 PersistentVolume
HTTP 请求
DELETE /api/v1/persistentvolumes/{name}
参数
name (在路径中): 字符串, 必需
PersistentVolume 的名称
body: DeleteOptions
dryRun (在查询中): 字符串
gracePeriodSeconds (在查询中): 整数
pretty (在查询中): 字符串
propagationPolicy (在查询中): 字符串
响应
200 (PersistentVolume): 成功
202 (PersistentVolume): 已接受
401: 未授权
deletecollection
删除 PersistentVolume 的集合
HTTP 请求
DELETE /api/v1/persistentvolumes
参数
body: DeleteOptions
continue (在查询中): 字符串
dryRun (在查询中): 字符串
fieldSelector (在查询中): 字符串
gracePeriodSeconds (在查询中): 整数
labelSelector (在查询中): 字符串
limit (在查询中): 整数
pretty (在查询中): 字符串
propagationPolicy (在查询中): 字符串
resourceVersion (在查询中): 字符串
resourceVersionMatch (在查询中): 字符串
sendInitialEvents (在查询中): 布尔值
timeoutSeconds (在查询中): 整数
响应
200 (Status): 成功
401: 未授权
此页面是自动生成的。
如果您计划报告有关此页面的问题,请在您的问题描述中提及该页面是自动生成的。修复可能需要在 Kubernetes 项目的其他地方进行。