add support for aws
parent
7f8de7ce8a
commit
53b9361b82
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue