Reputation: 1343
I am using this command to try and get a jenkins-x cluster set up and running :
jx create cluster aws --ng
I've also tried :
jx create cluster aws
the output looks like this :
Waiting to for a valid kops cluster state...
WARNING: retrying after error: exit status 2
error: Failed to successfully validate kops cluster state: after 25 attempts, last error: exit status 2
All help appreciated.
Upvotes: 0
Views: 201
Reputation: 3195
Try the kops validate cluster command as shown below
AWS_ACCESS_KEY_ID=<YOUR_KEY_HERE> AWS_SECRET_ACCESS_KEY=<YOUR_SECRET_KEY_HERE> kops validate cluster --wait 10m --state="s3://<YOUR_S3_BUCKET_NAME_HERE>" --name=<YOUR_CLUSTER_NAME_HERE>
Upvotes: 0