我正在GCP
上建立集群,并试图在其中添加一个Windows_SAC
节点池。返回了“未找到”错误(code=404
)。
我的项目已添加到快速发布频道,并且该群集是使用白名单服务帐户中的--release-channel rapid
标志设置的。
此集群启用了别名IP,是UBUNTU默认节点池,并且已成功创建,主版本和节点版本均为1.14.3-gke.9
。
当我尝试使用以下命令添加“ Windows_SAC”节点池时:
gcloud container node-pools create win-pool --cluster=NAME --image-type=WINDOWS_SAC --machine-type=n1-standard-2 --num-nodes=1 --verbosity debug
返回以下错误:
Traceback (most recent call last):
File "C:\Users\username\AppData\Local\Google\Cloud SDK\google-cloud-sdk\lib\googlecloudsdk\calliope\cli.py", line 983, in Execute
resources = calliope_command.Run(cli=self, args=args)
File "C:\Users\username\AppData\Local\Google\Cloud SDK\google-cloud-sdk\lib\googlecloudsdk\calliope\backend.py", line 795, in Run
resources = command_instance.Run(args)
File "C:\Users\username\AppData\Local\Google\Cloud SDK\google-cloud-sdk\lib\surface\container\node_pools\create.py", line 212, in Run
raise exceptions.HttpException(error, util.HTTP_ERROR_FORMAT)
HttpException: ResponseError: code=404, message=Not Found.
ERROR: (gcloud.container.node-pools.create) ResponseError: code=404, message=Not Found.
有人遇到过类似的问题吗?任何帮助表示赞赏。谢谢!