Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following set of commands can be used to install kubectl on your machine. You may need to change the version number below:

export K8S_VERSION=1.12.70
mkdir ~/bin
curl -L "https://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/linux/amd64/kubectl" > .
export PATH=$PATH:`pwd`
chmod +x ~/bin/*