Paddle on Kubernetes tutorial questions - aws part
Created by: helinwang
-
kube-aws up --s3-uri s3://xxxx
does not work for me, I got error
Creating AWS resources. This should take around 5 minutes. Error: Error creating cluster: stack creation failed: AlreadyExistsException: Stack [test-kube-aws-31415] already exists status code: 400, request id: xxx
I have created an issue on kube-aws repo https://github.com/coreos/kube-aws/issues/205
- The parameter
--external-dns-name=my-cluster-endpoint
forces every reader has an domain name to test with. Are there any alternatives? E.g., access cluster using ip:
$ kube-aws init
--cluster-name=my-cluster-name
--external-dns-name=my-cluster-endpoint
--region=us-west-1
--availability-zone=us-west-1c
--key-name=key-pair-name
--kms-key-arn="arn:aws:kms:us-west-2:xxxxxxxxxx:key/xxxxxxxxxxxxxxxxxxx"
- What "xxxxxxxxx" should I fill in, and does
YOUR_CLUSTER_NAME
means the cluster name defined inkube-aws init
command?
cloudformation inline policy:
"Version": "2012-10-17", "Statement": [ { "Sid": "Stmt1482205746000", "Effect": "Allow", "Action": [ "cloudformation:CreateStack", "cloudformation:UpdateStack", "cloudformation:DeleteStack", "cloudformation:DescribeStacks", "cloudformation:DescribeStackResource", "cloudformation:GetTemplate" ], "Resource": [ "arn:aws:cloudformation:us-west-2:xxxxxxxxx:stack/YOUR_CLUSTER_NAME/*" ] } ] }