你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

az k8s-runtime storage-class

注意

此参考是 Azure CLI(版本 2.57.0 或更高版本)的 k8s 运行时扩展的一部分。 该扩展将在首次运行 az k8s-runtime storage-class 命令时自动安装。 详细了解扩展。

此命令组处于预览状态,正在开发中。 参考和支持级别: https://aka.ms/CLI_refstatus

管理 Arc Kubernetes 群集的存储类。

命令

名称 说明 类型 状态
az k8s-runtime storage-class create

创建 存储Class。

扩展 预览
az k8s-runtime storage-class delete

删除 存储Class。

扩展 预览
az k8s-runtime storage-class disable

在连接的群集中禁用存储类服务。

扩展 预览
az k8s-runtime storage-class enable

在连接的群集中启用存储类服务。

扩展 预览
az k8s-runtime storage-class list

按父级列出存储Class 资源。

扩展 预览
az k8s-runtime storage-class show

获取 存储Class。

扩展 预览
az k8s-runtime storage-class update

更新 存储Class。

扩展 预览
az k8s-runtime storage-class wait

将 CLI 置于等待状态,直到满足条件。

扩展 预览

az k8s-runtime storage-class create

预览

命令组“k8s-runtime storage-class”处于预览状态,正在开发中。 参考和支持级别: https://aka.ms/CLI_refstatus

创建 存储Class。

az k8s-runtime storage-class create --resource-uri
                                    --storage-class-name
                                    [--access-modes]
                                    [--allow-volume-expansion {Allow, Disallow}]
                                    [--data-resilience {DataResilient, NotDataResilient}]
                                    [--failover-speed {Fast, NotAvailable, Slow, Super}]
                                    [--limitations]
                                    [--mount-options]
                                    [--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
                                    [--performance {Basic, Premium, Standard, Ultra, Undefined}]
                                    [--priority]
                                    [--provisioner]
                                    [--type-properties]
                                    [--volume-binding-mode {Immediate, WaitForFirstConsumer}]

示例

在 managed-csi 存储类的基础上创建 RWX 存储类

az k8s-runtime storage-class create --resource-uri subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/example/providers/Microsoft.Kubernetes/connectedClusters/cluster1 --storage-class-name rwxsc --type-properties rwx.backing-storage-class-name=managed-csi

创建 Blob 存储类

az k8s-runtime storage-class create --resource-uri subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/example/providers/Microsoft.Kubernetes/connectedClusters/cluster1 --storage-class-name blobsc --type-properties blob.azure-storage-account-key=accountkey blob.azure-storage-account-name=accountname

必需参数

--resource-uri

资源的完全限定的 Azure 资源管理器标识符。

--storage-class-name

存储类的名称。

可选参数

--access-modes

访问模式:[ReadWriteOnce、ReadWriteMany] 或 [ReadWriteOnce] 支持速记语法、json-file 和 yaml-file。 请尝试“??” 以显示更多内容。

--allow-volume-expansion

卷可以扩展或不扩展。

接受的值: Allow, Disallow
--data-resilience

允许单个数据节点失败。

接受的值: DataResilient, NotDataResilient
--failover-speed

故障转移速度:NA、慢、快。

接受的值: Fast, NotAvailable, Slow, Super
--limitations

存储类的限制支持速记语法、json-file 和 yaml-file。 请尝试“??” 以显示更多内容。

--mount-options

其他装载选项支持速记语法、json-file 和 yaml-file。 请尝试“??” 以显示更多内容。

--no-wait

不等待长时间运行的操作完成。

接受的值: 0, 1, f, false, n, no, t, true, y, yes
--performance

性能层。

接受的值: Basic, Premium, Standard, Ultra, Undefined
--priority

当多个存储类满足条件时,选择优先级。 0:最高,-1:永不使用。

--provisioner

预配程序名称。

--type-properties

存储Class 支持速记语法、json-file 和 yaml-file 的属性。 请尝试“??” 以显示更多内容。

--volume-binding-mode

卷的绑定模式:即时,WaitForFirstConsumer。

接受的值: Immediate, WaitForFirstConsumer
全局参数
--debug

提高日志记录详细程度以显示所有调试日志。

--help -h

显示此帮助消息并退出。

--only-show-errors

只显示错误,取消显示警告。

--output -o

输出格式。

接受的值: json, jsonc, none, table, tsv, yaml, yamlc
默认值: json
--query

JMESPath 查询字符串。 有关更多信息和示例,请参阅 http://jmespath.org/

--subscription

订阅的名称或 ID。 可以使用 az account set -s NAME_OR_ID 配置默认订阅。

--verbose

提高日志记录详细程度。 使用 --debug 获取完整的调试日志。

az k8s-runtime storage-class delete

预览

命令组“k8s-runtime storage-class”处于预览状态,正在开发中。 参考和支持级别: https://aka.ms/CLI_refstatus

删除 存储Class。

az k8s-runtime storage-class delete --resource-uri
                                    --storage-class-name
                                    [--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
                                    [--yes]

示例

删除存储类

az k8s-runtime storage-class delete --storage-class-name sc1 --resource-uri subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/example/providers/Microsoft.Kubernetes/connectedClusters/cluster1

必需参数

--resource-uri

资源的完全限定的 Azure 资源管理器标识符。

--storage-class-name

存储类的名称。

可选参数

--no-wait

不等待长时间运行的操作完成。

接受的值: 0, 1, f, false, n, no, t, true, y, yes
--yes -y

不提示确认。

默认值: False
全局参数
--debug

提高日志记录详细程度以显示所有调试日志。

--help -h

显示此帮助消息并退出。

--only-show-errors

只显示错误,取消显示警告。

--output -o

输出格式。

接受的值: json, jsonc, none, table, tsv, yaml, yamlc
默认值: json
--query

JMESPath 查询字符串。 有关更多信息和示例,请参阅 http://jmespath.org/

--subscription

订阅的名称或 ID。 可以使用 az account set -s NAME_OR_ID 配置默认订阅。

--verbose

提高日志记录详细程度。 使用 --debug 获取完整的调试日志。

az k8s-runtime storage-class disable

预览

命令组“k8s-runtime storage-class”处于预览状态,正在开发中。 参考和支持级别: https://aka.ms/CLI_refstatus

在连接的群集中禁用存储类服务。

az k8s-runtime storage-class disable --resource-uri

必需参数

--resource-uri

连接的群集的资源 URI。

全局参数
--debug

提高日志记录详细程度以显示所有调试日志。

--help -h

显示此帮助消息并退出。

--only-show-errors

只显示错误,取消显示警告。

--output -o

输出格式。

接受的值: json, jsonc, none, table, tsv, yaml, yamlc
默认值: json
--query

JMESPath 查询字符串。 有关更多信息和示例,请参阅 http://jmespath.org/

--subscription

订阅的名称或 ID。 可以使用 az account set -s NAME_OR_ID 配置默认订阅。

--verbose

提高日志记录详细程度。 使用 --debug 获取完整的调试日志。

az k8s-runtime storage-class enable

预览

命令组“k8s-runtime storage-class”处于预览状态,正在开发中。 参考和支持级别: https://aka.ms/CLI_refstatus

在连接的群集中启用存储类服务。

az k8s-runtime storage-class enable --resource-uri

必需参数

--resource-uri

连接的群集的资源 URI。

全局参数
--debug

提高日志记录详细程度以显示所有调试日志。

--help -h

显示此帮助消息并退出。

--only-show-errors

只显示错误,取消显示警告。

--output -o

输出格式。

接受的值: json, jsonc, none, table, tsv, yaml, yamlc
默认值: json
--query

JMESPath 查询字符串。 有关更多信息和示例,请参阅 http://jmespath.org/

--subscription

订阅的名称或 ID。 可以使用 az account set -s NAME_OR_ID 配置默认订阅。

--verbose

提高日志记录详细程度。 使用 --debug 获取完整的调试日志。

az k8s-runtime storage-class list

预览

命令组“k8s-runtime storage-class”处于预览状态,正在开发中。 参考和支持级别: https://aka.ms/CLI_refstatus

按父级列出存储Class 资源。

az k8s-runtime storage-class list --resource-uri
                                  [--max-items]
                                  [--next-token]

示例

列出群集中的所有存储类

az k8s-runtime storage-class list --resource-uri subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/example/providers/Microsoft.Kubernetes/connectedClusters/cluster1

必需参数

--resource-uri

资源的完全限定的 Azure 资源管理器标识符。

可选参数

--max-items

命令输出中要返回的项总数。 如果可用的项总数大于指定的值,则会在命令的输出中提供令牌。 若要恢复分页,请在后续命令的参数中 --next-token 提供令牌值。

--next-token

用于指定开始分页的位置的令牌。 这是先前截断的响应中的令牌值。

全局参数
--debug

提高日志记录详细程度以显示所有调试日志。

--help -h

显示此帮助消息并退出。

--only-show-errors

只显示错误,取消显示警告。

--output -o

输出格式。

接受的值: json, jsonc, none, table, tsv, yaml, yamlc
默认值: json
--query

JMESPath 查询字符串。 有关更多信息和示例,请参阅 http://jmespath.org/

--subscription

订阅的名称或 ID。 可以使用 az account set -s NAME_OR_ID 配置默认订阅。

--verbose

提高日志记录详细程度。 使用 --debug 获取完整的调试日志。

az k8s-runtime storage-class show

预览

命令组“k8s-runtime storage-class”处于预览状态,正在开发中。 参考和支持级别: https://aka.ms/CLI_refstatus

获取 存储Class。

az k8s-runtime storage-class show --resource-uri
                                  --storage-class-name

示例

显示存储类

az k8s-runtime storage-class show --storage-class-name sc1 --resource-uri subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/example/providers/Microsoft.Kubernetes/connectedClusters/cluster1

必需参数

--resource-uri

资源的完全限定的 Azure 资源管理器标识符。

--storage-class-name

存储类的名称。

全局参数
--debug

提高日志记录详细程度以显示所有调试日志。

--help -h

显示此帮助消息并退出。

--only-show-errors

只显示错误,取消显示警告。

--output -o

输出格式。

接受的值: json, jsonc, none, table, tsv, yaml, yamlc
默认值: json
--query

JMESPath 查询字符串。 有关更多信息和示例,请参阅 http://jmespath.org/

--subscription

订阅的名称或 ID。 可以使用 az account set -s NAME_OR_ID 配置默认订阅。

--verbose

提高日志记录详细程度。 使用 --debug 获取完整的调试日志。

az k8s-runtime storage-class update

预览

命令组“k8s-runtime storage-class”处于预览状态,正在开发中。 参考和支持级别: https://aka.ms/CLI_refstatus

更新 存储Class。

az k8s-runtime storage-class update --resource-uri
                                    --storage-class-name
                                    [--access-modes]
                                    [--allow-volume-expansion {Allow, Disallow}]
                                    [--data-resilience {DataResilient, NotDataResilient}]
                                    [--failover-speed {Fast, NotAvailable, Slow, Super}]
                                    [--limitations]
                                    [--mount-options]
                                    [--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
                                    [--performance {Basic, Premium, Standard, Ultra, Undefined}]
                                    [--priority]
                                    [--type-properties]

示例

更新 Blob 存储类的属性

az k8s-runtime storage-class update --resource-uri subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/example/providers/Microsoft.Kubernetes/connectedClusters/cluster1 --storage-class-name blobsc --type-properties azure-storage-account-key=accountkey azure-storage-account-name=accountname

必需参数

--resource-uri

资源的完全限定的 Azure 资源管理器标识符。

--storage-class-name

存储类的名称。

可选参数

--access-modes

访问模式:[ReadWriteOnce、ReadWriteMany] 或 [ReadWriteOnce] 支持速记语法、json-file 和 yaml-file。 请尝试“??” 以显示更多内容。

--allow-volume-expansion

卷可以扩展或不扩展。

接受的值: Allow, Disallow
--data-resilience

允许单个数据节点失败。

接受的值: DataResilient, NotDataResilient
--failover-speed

故障转移速度:NA、慢、快。

接受的值: Fast, NotAvailable, Slow, Super
--limitations

存储类的限制支持速记语法、json-file 和 yaml-file。 请尝试“??” 以显示更多内容。

--mount-options

其他装载选项支持速记语法、json-file 和 yaml-file。 请尝试“??” 以显示更多内容。

--no-wait

不等待长时间运行的操作完成。

接受的值: 0, 1, f, false, n, no, t, true, y, yes
--performance

性能层。

接受的值: Basic, Premium, Standard, Ultra, Undefined
--priority

当多个存储类满足条件时,选择优先级。 0:最高,-1:永不使用。

--type-properties

storageClass 的新存储类类型支持速记语法、json-file 和 yaml-file。 请尝试“??” 以显示更多内容。

全局参数
--debug

提高日志记录详细程度以显示所有调试日志。

--help -h

显示此帮助消息并退出。

--only-show-errors

只显示错误,取消显示警告。

--output -o

输出格式。

接受的值: json, jsonc, none, table, tsv, yaml, yamlc
默认值: json
--query

JMESPath 查询字符串。 有关更多信息和示例,请参阅 http://jmespath.org/

--subscription

订阅的名称或 ID。 可以使用 az account set -s NAME_OR_ID 配置默认订阅。

--verbose

提高日志记录详细程度。 使用 --debug 获取完整的调试日志。

az k8s-runtime storage-class wait

预览

命令组“k8s-runtime storage-class”处于预览状态,正在开发中。 参考和支持级别: https://aka.ms/CLI_refstatus

将 CLI 置于等待状态,直到满足条件。

az k8s-runtime storage-class wait --resource-uri
                                  --storage-class-name
                                  [--created]
                                  [--custom]
                                  [--deleted]
                                  [--exists]
                                  [--interval]
                                  [--timeout]
                                  [--updated]

必需参数

--resource-uri

资源的完全限定的 Azure 资源管理器标识符。

--storage-class-name

存储类的名称。

可选参数

--created

等待在“Succeeded”中使用“provisioningState”创建。

默认值: False
--custom

等待条件满足自定义 JMESPath 查询。 例如 provisioningState!='InProgress', instanceView.statuses[?code=='PowerState/running']。

--deleted

等到删除为止。

默认值: False
--exists

等待资源存在。

默认值: False
--interval

轮询间隔(以秒为单位)。

默认值: 30
--timeout

最大等待(以秒为单位)。

默认值: 3600
--updated

等到 provisioningState 更新为“Succeeded”。

默认值: False
全局参数
--debug

提高日志记录详细程度以显示所有调试日志。

--help -h

显示此帮助消息并退出。

--only-show-errors

只显示错误,取消显示警告。

--output -o

输出格式。

接受的值: json, jsonc, none, table, tsv, yaml, yamlc
默认值: json
--query

JMESPath 查询字符串。 有关更多信息和示例,请参阅 http://jmespath.org/

--subscription

订阅的名称或 ID。 可以使用 az account set -s NAME_OR_ID 配置默认订阅。

--verbose

提高日志记录详细程度。 使用 --debug 获取完整的调试日志。