1

如果我运行jx create cluster aws-> 它会在 aws 上创建集群而没有任何问题,但如果我不指定这样的一些选项:

jx create cluster aws --zones us-east-2b --nodes=2 --node-size=t2.micro --master-size=t2.micro

然后它不断失败,无论我试图改变什么,几乎所有选项都会出现这些错误:

Error: unknown flag: - -node-size and the same for other options. Options were taken from here https://jenkins-x.io/commands/jx_create_cluster_aws/

使用任何选项设置带有 kops 的集群都没有任何问题

4

2 回答 2

3

我在评论中询问了这个问题,但实际答案似乎是您使用的版本jx与文档不匹配。因为这是我对新下载的二进制文件的体验:

$ ./jx create cluster aws --verbose=true --zones=us-west-2a,us-west-2b,us-west-2c --cluster-name=sample --node-size=5 --master-size=m5.large
kops not found
kubectl not found
helm not found
? Missing required dependencies, deselect to avoid auto installing:  [Use arrows to move, type to filter]
❯ ◉  kops
  ◉  kubectl
  ◉  helm
? nodes [? for help] (3)
^C

$ ./jx --version
1.3.90
于 2018-07-14T05:06:53.493 回答
0

您可以通过以下方式查看jx您正在使用的版本:

jx version

您可以通过jx help create cluster aws或浏览命令的在线 CLI 参考来检查命令的选项:jx create cluster aws

于 2018-08-01T05:06:33.123 回答