Created
November 18, 2021 19:22
-
-
Save leadelngalame1611/58d41b7bdc49785e11cac922ed47c4ce to your computer and use it in GitHub Desktop.
Install kubectl, kind, aws-iam-authenticator, eksctl and update aws
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install kubectl | |
curl -sLO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" | |
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl | |
rm -f ./kubectl | |
# install eksctl | |
curl -sLO "https://github.com/weaveworks/eksctl/releases/latest/download/eksctl_$(uname -s)_amd64.tar.gz" | |
tar xz -C /tmp -f "eksctl_$(uname -s)_amd64.tar.gz" | |
sudo install -o root -g root -m 0755 /tmp/eksctl /usr/local/bin/eksctl | |
rm -f ./"eksctl_$(uname -s)_amd64.tar.gz" | |
# install aws-iam-authenticator | |
curl -sLO "https://amazon-eks.s3.us-west-2.amazonaws.com/1.19.6/2021-01-05/bin/linux/amd64/aws-iam-authenticator" | |
sudo install -o root -g root -m 0755 aws-iam-authenticator /usr/local/bin/aws-iam-authenticator | |
rm -f ./aws-iam-authenticator | |
# install kind | |
curl -sLo kind "https://kind.sigs.k8s.io/dl/v0.11.0/kind-linux-amd64" | |
sudo install -o root -g root -m 0755 kind /usr/local/bin/kind | |
rm -f ./kind | |
# install awscliv2 | |
curl -sLo "awscliv2.zip" "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" | |
unzip awscliv2.zip | |
sudo ./aws/install | |
rm -rf ./awscliv2.zip ./aws | |
# setup tab completion | |
/usr/local/bin/kubectl completion bash | sudo tee /etc/bash_completion.d/kubectl >/dev/null | |
/usr/local/bin/eksctl completion bash | sudo tee /etc/bash_completion.d/eksctl >/dev/null | |
echo 'source /usr/share/bash-completion/bash_completion' >> $HOME/.bashrc | |
. $HOME/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment