西欧地区支持 Azure 容器服务,您可以在此链接中查看服务的支持情况:
您显然没有展示您是如何创建集群的,我们需要有关您所遵循的步骤和一些屏幕截图的更多信息。但正如您所知, 它确实有效,我刚刚在Az cli 2.0上使用以下命令将一个 kubernetes 集群部署到“westeurope”区域:
RG=stackoverflowtest
LOCATION=westeurope
az group create --name=$RG --location=$LOCATION
az acs create --orchestrator-type=kubernetes --resource-group $RG --name=$CLUSTER_NAME --dns-prefix=$DNS_PREFIX
这是您在 5-10 分钟后得到的结果,如下所示:
creating service principal.........done
waiting for AAD role to propagate.done
{
"id": "/subscriptions/xxxxxxxx-xxx-xxxx-xxx-xxxxxxxxxxxd/resourceGroups/stackoverflowtest/providers/Microsoft.Resources/deployments/azureclixx.xx",
"name": "azureclixx.xx",
"properties": {
"correlationId": "xxxxxxx-xxxx-xxx-xxxx-xxxxxxxxxx",
"debugSetting": null,
"dependencies": [],
"mode": "Incremental",
"outputs": null,
"parameters": {
"clientSecret": {
"type": "SecureString"
}
},
"parametersLink": null,
"providers": [
{
"id": null,
"namespace": "Microsoft.ContainerService",
"registrationState": null,
"resourceTypes": [
{
"aliases": null,
"apiVersions": null,
"locations": [
"westeurope"
],
"properties": null,
"resourceType": "containerServices"
}
]
}
],
"provisioningState": "Succeeded",
"template": null,
"templateLink": null,
"timestamp": "2017-03-14T21:00:39.066034+00:00"
},
"resourceGroup": "stackoverflowtest"
}
而且,这是关于如何部署 Kubernetes ACS 的官方文档: