How to install kubectl in Linux
Kubectl is the command-line toold for managing the kubernetes cluster.
This article explains the steps to install Kubectl in Linux.
Step1: Download the latest binary package of kubectl.
#curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
Step2: Install kubectl binary.
#sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
That's all…