Created
January 12, 2021 11:26
-
-
Save anderson-marques/87a3279c89053d94a159fd27ff941873 to your computer and use it in GitHub Desktop.
Shell to download Kubectl
This file contains hidden or 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
| curl -o kubectl https://amazon-eks.s3.us-west-2.amazonaws.com/1.16.8/2020-04-16/bin/linux/amd64/kubectl | |
| chmod +x ./kubectl | |
| mkdir -p $HOME/bin && cp ./kubectl $HOME/bin/kubectl && export PATH=$PATH:$HOME/bin | |
| kubectl version --short --client |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment