Skip to content

Instantly share code, notes, and snippets.

@sbuvaneshkumar
Created May 27, 2020 16:19
Show Gist options
  • Save sbuvaneshkumar/a06ee65a37075906402ccd02244a84e3 to your computer and use it in GitHub Desktop.
Save sbuvaneshkumar/a06ee65a37075906402ccd02244a84e3 to your computer and use it in GitHub Desktop.
# 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