VolumeAttachment
apiVersion: storage.k8s.io/v1
import "k8s.io/api/storage/v1"
VolumeAttachment
VolumeAttachment 捕获将指定卷附加到指定节点或从指定节点分离的意图。
VolumeAttachment 对象是非命名空间的。
apiVersion: storage.k8s.io/v1
kind: VolumeAttachment
metadata (ObjectMeta)
标准对象元数据。更多信息: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
spec (VolumeAttachmentSpec),必需
spec 表示期望的附加/分离卷行为的规范。由 Kubernetes 系统填充。
status (VolumeAttachmentStatus)
status 表示 VolumeAttachment 请求的状态。由完成附加或分离操作的实体(即外部附加器)填充。
VolumeAttachmentSpec
VolumeAttachmentSpec 是 VolumeAttachment 请求的规范。
attacher (string),必需
attacher 指示必须处理此请求的卷驱动程序的名称。这是 GetPluginName() 返回的名称。
nodeName (string),必需
nodeName 表示应该将卷附加到的节点。
source (VolumeAttachmentSource),必需
source 表示应该附加的卷。
VolumeAttachmentSource 表示应该附加的卷。目前只有 PersistenVolumes 可以通过外部附加器附加,将来我们可能允许 Pod 中也存在内联卷。只能设置一个成员。
source.inlineVolumeSpec (PersistentVolumeSpec)
inlineVolumeSpec 包含附加由 Pod 的内联 VolumeSource 定义的持久卷所需的所有信息。此字段仅为 CSIMigration 功能填充。它包含从 Pod 的内联 VolumeSource 转换为 PersistentVolumeSpec 的翻译字段。此字段是 Beta 级别的,并且仅由启用 CSIMigration 功能的服务器识别。
source.persistentVolumeName (string)
persistentVolumeName 表示要附加的持久卷的名称。
VolumeAttachmentStatus
VolumeAttachmentStatus 是 VolumeAttachment 请求的状态。
attached (boolean),必需
attached 指示卷已成功附加。此字段必须仅由完成附加操作的实体(即外部附加器)设置。
attachError (VolumeError)
attachError 表示附加操作期间遇到的最后一个错误(如果有)。此字段必须仅由完成附加操作的实体(即外部附加器)设置。
attachmentMetadata (map[string]string)
attachmentMetadata 填充了附加操作返回的任何信息,成功附加后,该信息必须传递到后续的 WaitForAttach 或 Mount 调用中。此字段必须仅由完成附加操作的实体(即外部附加器)设置。
detachError (VolumeError)
detachError 表示分离操作期间遇到的最后一个错误(如果有)。此字段必须仅由完成分离操作的实体(即外部附加器)设置。
VolumeAttachmentList
VolumeAttachmentList 是 VolumeAttachment 对象的集合。
apiVersion: storage.k8s.io/v1
kind: VolumeAttachmentList
metadata (ListMeta)
标准列表元数据。更多信息:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
items ([]VolumeAttachment),必需
items 是 VolumeAttachment 的列表
操作
get
读取指定的 VolumeAttachment
HTTP 请求
GET /apis/storage.k8s.io/v1/volumeattachments/{name}
参数
name (在路径中):字符串,必需
VolumeAttachment 的名称
pretty (在查询中):字符串
响应
200 (VolumeAttachment): OK
401: 未授权
get
读取指定 VolumeAttachment 的状态
HTTP 请求
GET /apis/storage.k8s.io/v1/volumeattachments/{name}/status
参数
name (在路径中):字符串,必需
VolumeAttachment 的名称
pretty (在查询中):字符串
响应
200 (VolumeAttachment): OK
401: 未授权
list
列出或监视 VolumeAttachment 类型的对象
HTTP 请求
GET /apis/storage.k8s.io/v1/volumeattachments
参数
allowWatchBookmarks (在查询中): 布尔值
continue (在查询中): 字符串
fieldSelector (在查询中): 字符串
labelSelector (在查询中): 字符串
limit (在查询中): 整数
pretty (在查询中):字符串
resourceVersion (在查询中): 字符串
resourceVersionMatch (在查询中): 字符串
sendInitialEvents (在查询中): 布尔值
timeoutSeconds (在查询中): 整数
watch (在查询中): 布尔值
响应
200 (VolumeAttachmentList): OK
401: 未授权
create
创建 VolumeAttachment
HTTP 请求
POST /apis/storage.k8s.io/v1/volumeattachments
参数
body: VolumeAttachment, 必需
dryRun (在查询中): 字符串
fieldManager (在查询中): 字符串
fieldValidation (在查询中): 字符串
pretty (在查询中):字符串
响应
200 (VolumeAttachment): OK
201 (VolumeAttachment): 已创建
202 (VolumeAttachment): 已接受
401: 未授权
update
替换指定的 VolumeAttachment
HTTP 请求
PUT /apis/storage.k8s.io/v1/volumeattachments/{name}
参数
name (在路径中):字符串,必需
VolumeAttachment 的名称
body: VolumeAttachment, 必需
dryRun (在查询中): 字符串
fieldManager (在查询中): 字符串
fieldValidation (在查询中): 字符串
pretty (在查询中):字符串
响应
200 (VolumeAttachment): OK
201 (VolumeAttachment): 已创建
401: 未授权
update
替换指定 VolumeAttachment 的状态
HTTP 请求
PUT /apis/storage.k8s.io/v1/volumeattachments/{name}/status
参数
name (在路径中):字符串,必需
VolumeAttachment 的名称
body: VolumeAttachment, 必需
dryRun (在查询中): 字符串
fieldManager (在查询中): 字符串
fieldValidation (在查询中): 字符串
pretty (在查询中):字符串
响应
200 (VolumeAttachment): OK
201 (VolumeAttachment): 已创建
401: 未授权
patch
部分更新指定的 VolumeAttachment
HTTP 请求
PATCH /apis/storage.k8s.io/v1/volumeattachments/{name}
参数
name (在路径中):字符串,必需
VolumeAttachment 的名称
body: Patch, 必需
dryRun (在查询中): 字符串
fieldManager (在查询中): 字符串
fieldValidation (在查询中): 字符串
force (在查询中): 布尔值
pretty (在查询中):字符串
响应
200 (VolumeAttachment): OK
201 (VolumeAttachment): 已创建
401: 未授权
patch
部分更新指定 VolumeAttachment 的状态
HTTP 请求
PATCH /apis/storage.k8s.io/v1/volumeattachments/{name}/status
参数
name (在路径中):字符串,必需
VolumeAttachment 的名称
body: Patch, 必需
dryRun (在查询中): 字符串
fieldManager (在查询中): 字符串
fieldValidation (在查询中): 字符串
force (在查询中): 布尔值
pretty (在查询中):字符串
响应
200 (VolumeAttachment): OK
201 (VolumeAttachment): 已创建
401: 未授权
delete
删除 VolumeAttachment
HTTP 请求
DELETE /apis/storage.k8s.io/v1/volumeattachments/{name}
参数
name (在路径中):字符串,必需
VolumeAttachment 的名称
body: DeleteOptions
dryRun (在查询中): 字符串
gracePeriodSeconds (在查询中): 整数
pretty (在查询中):字符串
propagationPolicy (在查询中): 字符串
响应
200 (VolumeAttachment): OK
202 (VolumeAttachment): 已接受
401: 未授权
deletecollection
删除 VolumeAttachment 的集合
HTTP 请求
DELETE /apis/storage.k8s.io/v1/volumeattachments
参数
body: DeleteOptions
continue (在查询中): 字符串
dryRun (在查询中): 字符串
fieldSelector (在查询中): 字符串
gracePeriodSeconds (在查询中): 整数
labelSelector (在查询中): 字符串
limit (在查询中): 整数
pretty (在查询中):字符串
propagationPolicy (在查询中): 字符串
resourceVersion (在查询中): 字符串
resourceVersionMatch (在查询中): 字符串
sendInitialEvents (在查询中): 布尔值
timeoutSeconds (在查询中): 整数
响应
200 (Status): OK
401: 未授权
此页面是自动生成的。
如果您计划报告此页面的问题,请在您的问题描述中提及该页面是自动生成的。修复可能需要在 Kubernetes 项目中的其他位置进行。