Skip to content

Setting AWS EKS cluster using eksctl, kubectl and aws-iam-authenticator

Notifications You must be signed in to change notification settings

productiveAnalytics/EKS-cluster

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EKS-cluster

Setting AWS EKS cluster using eksctl, kubectl and aws-iam-authenticatorRefer: https://eksctl.io

YouTube videos :

# Video Topic
1 https://www.youtube.com/watch?v=VMJa0-uJKhE Architecture
2 https://www.youtube.com/watch?v=hUeGe2ArYZg Service types and Networking
3 https://www.youtube.com/watch?v=5VpK61DqBvw Advanced Security & DevOps/GitOps
4 https://www.youtube.com/watch?v=p6xDCz00TxU Quick cluster setup w/ EKSctl (MacOS)

#=== Setup of EKS ctl, Kube ctl and aws-iam-authenticator ===#

Go to the folder

cd ~/opt/EKSctl

Add to PATH

export PATH="~/opt/EKSctl:$PATH"

Download the tarball for EKSctl and unzip to /tmp

curl --silent --location "https://github.com/weaveworks/eksctl/releases/download/latest_release/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp

Move the eksctl executable to the location

mv /tmp/eksctl ~/opt/EKSctl/

Confirm the eksctl version

eksctl version

curl -o kubectl https://amazon-eks.s3-us-west-2.amazonaws.com/1.13.7/2019-06-11/bin/linux/amd64/kubectl

Access

chmod +x kubectl

curl -o aws-iam-authenticator https://amazon-eks.s3-us-west-2.amazonaws.com/1.13.7/2019-06-11/bin/linux/amd64/aws-iam-authenticator

Access

chmod +x aws-iam-authenticator

References: