diff options
author | Patrick Uiterwijk <puiterwijk@redhat.com> | 2016-02-20 10:25:47 +0000 |
---|---|---|
committer | Patrick Uiterwijk <puiterwijk@redhat.com> | 2016-02-20 10:35:33 +0000 |
commit | 85011de7d94d7dfe3e711ec91dc746bfad1e3588 (patch) | |
tree | d1841e52da5e8e01131b802c3263321cc83ce6a0 /README_AWS.md | |
parent | e73e8b81071f3668efb59124637747214a67678d (diff) | |
download | openshift-85011de7d94d7dfe3e711ec91dc746bfad1e3588.tar.gz openshift-85011de7d94d7dfe3e711ec91dc746bfad1e3588.tar.bz2 openshift-85011de7d94d7dfe3e711ec91dc746bfad1e3588.tar.xz openshift-85011de7d94d7dfe3e711ec91dc746bfad1e3588.zip |
Document setting the VPC subnet
This is needed because the default instance type requires a VPC.
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
Diffstat (limited to 'README_AWS.md')
-rw-r--r-- | README_AWS.md | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/README_AWS.md b/README_AWS.md index 700ecf30c..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` @@ -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' |