我的目标是使用Bluemix CLI编写容器集群的脚本。我正在运行的命令是:
$ bx cs cluster-create --name mycluster --workers 1
我收到的消息是:
Creating cluster...
The machine-type flag was not specified. So free cluster will be created
FAILED
Your Bluemix space must be specified. If you are using the API, include the headers
X-Auth-Resource-Space header. To get the list of orgs run 'bx iam orgs'. To get the
list of spaces run 'bx iam spaces'. (E0126)
Incident ID: 421d4577-4873-433d-adff-a870fe0983a3
我感到困惑/困惑的是,该消息似乎表明我指定了我的Bluemix空间,但是此命令没有指定空格的选项。
答案 0 :(得分:1)
答案是必须使用单独的命令为环境指定一个人的组织和空间。具体做法是:
$ bx target -o <yourOrganization> -s <yourSpace>
使用CLI命令登录bluemix后可以找到这些值:
$ bx iam orgs
和
$ bx iam spaces
运行bx target
命令后,可以重新运行bx cs create-cluster
命令。