如果我运行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设置群集,无论使用哪种选项都没有问题
答案 0 :(得分:3)
我在评论中对此进行了询问,但实际的 answer 似乎是您所使用的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
答案 1 :(得分:0)
您可以通过以下方式查看您使用的jx
版本:
jx version
您可以通过jx help create cluster aws
或浏览online CLI reference来查看命令的选项:jx create cluster aws