无法在 Azure 中启用 "Microsoft.Container Service"
Cannot enable "Microsoft.Container Service" in Azure
我尝试 运行 az provider register --namespace Microsoft.ContainerService
用了 2 个多小时。但是,它仍然显示 WindowsPreview 处于 NotRegistered 状态。
它只提到在this link完成注册需要几分钟,但已经花了2个多小时。
正确的命令应该是这样的:
az feature register --name WindowsPreview --namespace Microsoft.ContainerService
而你运行的命令是刷新Microsoft.ContainerService resource provider
的注册。
尽管答案是由 Charles 提供的,但我想附上对其他人有帮助的命令列表,
az feature register --name "WindowsPreview" --namespace "Microsoft.ContainerService"
和 commands
列表
我尝试 运行 az provider register --namespace Microsoft.ContainerService
用了 2 个多小时。但是,它仍然显示 WindowsPreview 处于 NotRegistered 状态。
它只提到在this link完成注册需要几分钟,但已经花了2个多小时。
正确的命令应该是这样的:
az feature register --name WindowsPreview --namespace Microsoft.ContainerService
而你运行的命令是刷新Microsoft.ContainerService resource provider
的注册。
尽管答案是由 Charles 提供的,但我想附上对其他人有帮助的命令列表,
az feature register --name "WindowsPreview" --namespace "Microsoft.ContainerService"
和 commands