Skip to content

Commit fa3057f

Browse files
committed
1. Pull kubectl and heptio-authenticator-aws from EKS vended.
2. Removing the quantity of worker nodes provisioned (set by the CloudFormation template)
1 parent d000552 commit fa3057f

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

01-path-basics/101-start-here/scripts/lab-ide-build.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,12 @@ sudo -H pip install -U awscli
1818
sudo yum install bash-completion -y
1919

2020
# Install kubectl
21-
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
21+
curl -o kubectl https://amazon-eks.s3-us-west-2.amazonaws.com/1.10.3/2018-06-05/bin/linux/amd64/kubectl
2222
chmod +x kubectl && sudo mv kubectl /usr/local/bin/
23-
echo "source <(kubectl completion bash)" >> ~/.bashrc
2423

2524
# Install Heptio Authenticator
26-
go get -u github.com/heptio/authenticator/cmd/heptio-authenticator-aws
27-
export PATH=$PATH:$HOME/go/bin
25+
curl -o heptio-authenticator-aws https://amazon-eks.s3-us-west-2.amazonaws.com/1.10.3/2018-06-05/bin/linux/amd64/heptio-authenticator-aws
26+
chmod +x ./heptio-authenticator-aws && sudo mv heptio-authenticator-aws /usr/local/bin/
2827

2928
# Configure AWS CLI
3029
availability_zone=$(curl http://169.254.169.254/latest/meta-data/placement/availability-zone)

01-path-basics/103-kubernetes-concepts/readme.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Kubernetes as a platform has a number of abstractions that map to API objects. T
1414

1515
== Prerequisites
1616

17-
This chapter uses an EKS cluster with 3 worker nodes as described link:../102-your-first-cluster[here].
17+
This chapter uses an EKS cluster with worker nodes as described link:../102-your-first-cluster[here].
1818

1919
All configuration files for this chapter are in the `01-path-basics/103-kubernetes-concepts/templates` directory.
2020
Please be sure to `cd` into that directory before running the commands below.

0 commit comments

Comments
 (0)