From 53b9361b821ba19c062dcdd4f8e8c16cb998e3f7 Mon Sep 17 00:00:00 2001 From: Kelsey Hightower Date: Sun, 11 Sep 2016 03:57:16 -0700 Subject: [PATCH] add support for aws --- docs/01-infrastructure-aws.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/docs/01-infrastructure-aws.md b/docs/01-infrastructure-aws.md index 58f2260..92b0638 100644 --- a/docs/01-infrastructure-aws.md +++ b/docs/01-infrastructure-aws.md @@ -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.