Created
May 27, 2020 16:19
-
-
Save sbuvaneshkumar/a06ee65a37075906402ccd02244a84e3 to your computer and use it in GitHub Desktop.
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
# docker | |
curl -fsSL https://get.docker.com |bash | |
systemctl enable --now docker | |
# kubectl | |
curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectl | |
chmod +x ./kubectl | |
mv ./kubectl /bin/ | |
# kind | |
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.8.1/kind-$(uname)-amd64 | |
chmod +x ./kind | |
mv ./kind /bin/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment