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

从 Azure 容器实例的备用池请求容器(预览版)

重要

Azure 容器实例的备用池现在为预览版。 需同意补充使用条款才可使用预览版。 在正式版 (GA) 推出之前,此功能的某些方面可能会有所更改。

本文逐步介绍如何从 Azure 容器实例的备用池请求容器组。

先决条件

在使用备用池之前,请完成功能注册并配置 Azure 容器实例的备用池概述页中列出的基于角色的访问控制。

从备用池请求容器

使用 az container create,并指定备用池和容器组配置文件,从而从备用池请求容器组。 有关在容器请求期间使用配置映射的详细信息,请参阅使用配置映射

az container create \
    --resource-group myResourceGroup \
    --name mycontainer \ 
    --location WestCentralUS \
    --config-map key1=value1 key2=value2 \
    --container-group-profile-id "/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroupProfiles/mycontainergroupprofile" \
    --container-group-profile-revision 1 \
    --standby-pool-profile-id "/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.StandbyPool/standbyContainerGroupPools/myStandbyPool" 


后续步骤