共用方式為


建立 Azure 容器執行個體 的待命集區 (預覽)

重要

Azure 容器執行個體 的待命集區目前為預覽狀態。 若您同意補充的使用規定即可取得預覽。 在公開上市 (GA) 之前,此功能的某些領域可能會變更。

本文逐步說明如何建立容器群組配置檔,並使用該配置檔來設定 Azure 容器執行個體 的待命集區。

必要條件

使用待命集區之前,請先完成功能註冊,並設定待命集區中所列的角色型訪問控制,以 Azure 容器執行個體 概觀頁面。

建立容器群組配置檔

容器群組配置檔會告知待命集區如何設定集區中的容器。 如果您變更容器群組配置檔,您也需要更新待命集區,以確保更新會套用至集區中的實例。

注意

若要使用 機密容器 ,請在建立容器群組設定檔時,將 sku 類型更新為 Confidential

使用 az container-group-profile create 建立容器群組配置檔。 您可以選擇性地在容器群組設定檔中包含組態對應詳細數據。 如需設定對應的詳細資訊,請參閱 使用設定對應

az container container-group-profile create \
    --resource-group myResourceGroup \
    --name mycontainergroupprofile \
    --location WestCentralUS \
    --image nginx \
    --os-type Linux \ 
    --ip-address Public \ 
    --ports 8000 \ 
    --cpu 1 \
    --memory 1.5 \
    --restart-policy Never

建立待命集區

使用 az standby-container-group-pool create 建立待命集區,並將其與容器群組配置檔產生關聯。

az standby-container-group-pool create \
   --resource-group myResourceGroup 
   --location WestCentralUS \
   --name myStandbyPool \
   --max-ready-capacity 20 \
   --refill-policy always \
   --container-profile-id "/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroupProfiles/myContainerGroupProfile"

下一步

從待命集區要求容器。