You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

kubectl is a command-line tool for managing everything about your Kubernetes cluster.

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.1.7
mkdir ~/bin
curl -L "https://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/linux/amd64/kubectl" > .
export PATH=$PATH:`pwd`
chmod +x ~/bin/*
  • No labels