diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2016-02-22 11:02:48 -0500 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2016-02-22 11:02:48 -0500 |
commit | ade438166296bd55019e0dbe556b00390ffb053e (patch) | |
tree | 5160bc418cfd2559566273506f42a754ff32caeb | |
parent | 2140f3d05e09c102a5940dec4a502b45084a0bac (diff) | |
parent | 85011de7d94d7dfe3e711ec91dc746bfad1e3588 (diff) | |
download | openshift-ade438166296bd55019e0dbe556b00390ffb053e.tar.gz openshift-ade438166296bd55019e0dbe556b00390ffb053e.tar.bz2 openshift-ade438166296bd55019e0dbe556b00390ffb053e.tar.xz openshift-ade438166296bd55019e0dbe556b00390ffb053e.zip |
Merge pull request #1456 from puiterwijk/aws-fixes
AWS Documentation fixes
-rw-r--r-- | README_AWS.md | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/README_AWS.md b/README_AWS.md index c605de43d..4a2399d42 100644 --- a/README_AWS.md +++ b/README_AWS.md @@ -43,6 +43,16 @@ You may also want to allow access from the outside world on the following ports: ``` +Determine your subnet and setup the VPC +--------------------------------------- + +In the AWS VPC console, look up your subnet ID for the region you want to use and set it as such: + +- export ec2_vpc_subnet='my_vpc_subnet' + +Go to Your VPCs, select the VPC, and under Actions -> DNS Hostnames, set to Yes and Save. + + (Optional) Setup your $HOME/.ssh/config file ------------------------------------------- In case of a cluster creation, or any other case where you don't know the machine hostname in advance, you can use `.ssh/config` @@ -62,7 +72,7 @@ Alternatively, you can configure your ssh-agent to hold the credentials to conne By default, a cluster is launched with the following configuration: - Instance type: m4.large -- AMI: ami-307b3658 (for online deployments, ami-acd999c4 for origin deployments and ami-10663b78 for enterprise deployments) +- AMI: ami-7a9e9812 (for online deployments, ami-61bbf104 for origin deployments and ami-10663b78 for enterprise deployments) - Region: us-east-1 - Keypair name: libra - Security group: public @@ -109,7 +119,6 @@ If needed, these values can be changed by setting environment variables on your - export ec2_region='us-east-1' - export ec2_keypair='libra' - export ec2_security_groups="['public']" -- export ec2_vpc_subnet='my_vpc_subnet' - export ec2_assign_public_ip='true' - export os_etcd_root_vol_size='20' - export os_etcd_root_vol_type='standard' |