我正在学习这教程。我正在一个aws ec2实例上运行jenkins,在那里我安装了kubenetes和jx。我到了运行命令jx create cluster eks --cluster-name=konsek-cloud --skip-installation=true --verbose的部分,它在
DEBUG: eksctl is already available on your PATH at /home/ec2-user/.jx/bin/eksctl
DEBUG: aws-iam-authenticator is already available on your PATH at /home/ec2-user/.jx/bin/aws-iam-authenticator
DEBUG: Dependencies to be installed:
DEBUG: kubectl is already available on your PATH at /usr/bin/kubectl
DEBUG: helm is already available on your PATH at /home/ec2-user/.jx/bin/helm
error: exit status 1我想不出怎样才能从中获得更多的信息,也不知道哪里出了问题。有人能建议一下“打开”日志输出的方法吗?或者知道什么我可以试着解决这个问题?
发布于 2019-11-25 07:59:35
我只是经历了同样的问题。看来在第一次使用时安装的eksctl并不适用于我。我去了eksctl网站并从那里安装了它(https://eksctl.io/introduction/installation/)
使用二进制文件:
➜ ~ jx create cluster eks --cluster-name=konsek-cloud --skip-installation=true --verbose
DEBUG: eksctl is already available on your PATH at /Users/<user>/.jx/bin/eksctl
DEBUG: aws-iam-authenticator is already available on your PATH at /Users/<user>/.jx/bin/aws-iam-authenticator
DEBUG: Dependencies to be installed:
DEBUG: kubectl is already available on your PATH at /usr/local/bin/kubectl
DEBUG: helm is already available on your PATH at /usr/local/bin/helm
DEBUG: brew is already available on your PATH at /usr/local/bin/brew
error: exit status 1使用手动安装的二进制文件:
➜ ~ jx create cluster eks --cluster-name=konsek-cloud --skip-installation=true --verbose
DEBUG: eksctl is already available on your PATH at /usr/local/bin/eksctl
DEBUG: aws-iam-authenticator is already available on your PATH at /usr/local/bin/aws-iam-authenticator
DEBUG: Dependencies to be installed:
DEBUG: kubectl is already available on your PATH at /usr/local/bin/kubectl
DEBUG: helm is already available on your PATH at /usr/local/bin/helm
DEBUG: brew is already available on your PATH at /usr/local/bin/brew
Creating EKS cluster - this can take a while so please be patient...
... https://devops.stackexchange.com/questions/9119
复制相似问题