add support for aws

pull/48/merge
Kelsey Hightower 2016-09-11 03:57:16 -07:00
parent 7f8de7ce8a
commit 53b9361b82
1 changed files with 1 additions and 7 deletions

View File

@ -164,7 +164,7 @@ aws ec2 authorize-security-group-ingress \
aws ec2 authorize-security-group-ingress \
--group-id ${SECURITY_GROUP_ID} \
--protocol tcp \
--port 443 \
--port 6443 \
--cidr 0.0.0.0/0
```
@ -180,12 +180,6 @@ aws elb create-load-balancer \
--security-groups ${SECURITY_GROUP_ID}
```
```
KUBERNETES_PUBLIC_IP_ADDRESS=$(aws elb describe-load-balancers \
--load-balancer-name kubernetes | \
jq -r '.LoadBalancerDescriptions[].DNSName')
```
## Provision Virtual Machines
All the VMs in this lab will be provisioned using Ubuntu 16.04 mainly because it runs a newish Linux Kernel that has good support for Docker.