File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,12 @@ sudo -H pip install -U awscli
18
18
sudo yum install bash-completion -y
19
19
20
20
# 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
22
22
chmod +x kubectl && sudo mv kubectl /usr/local/bin/
23
- echo " source <(kubectl completion bash)" >> ~ /.bashrc
24
23
25
24
# 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/
28
27
29
28
# Configure AWS CLI
30
29
availability_zone=$( curl http://169.254.169.254/latest/meta-data/placement/availability-zone)
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Kubernetes as a platform has a number of abstractions that map to API objects. T
14
14
15
15
== Prerequisites
16
16
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].
18
18
19
19
All configuration files for this chapter are in the `01-path-basics/103-kubernetes-concepts/templates` directory.
20
20
Please be sure to `cd` into that directory before running the commands below.
You can’t perform that action at this time.
0 commit comments