Merge pull request #5381 from justinsb/aws_s3_in_us_east

Create S3 bucket in known region (default to us-east-1)
This commit is contained in:
Alex Robinson
2015-03-18 09:34:59 -07:00
3 changed files with 33 additions and 13 deletions

View File

@@ -24,6 +24,9 @@ NUM_MINIONS=${NUM_MINIONS:-4}
# (otherwise a unique bucket name will be generated for you)
# AWS_S3_BUCKET=kubernetes-artifacts
# Because regions are globally named, we want to create in a single region; default to us-east-1
AWS_S3_REGION=${AWS_S3_REGION:-us-east-1}
INSTANCE_PREFIX="${KUBE_AWS_INSTANCE_PREFIX:-kubernetes}"
AWS_SSH_KEY=${AWS_SSH_KEY:-$HOME/.ssh/kube_aws_rsa}
IAM_PROFILE_MASTER="kubernetes-master"