Created
December 20, 2019 10:42
-
-
Save tdlmatias/bf620fbf594c25fc64ee5039208639de to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
############################ | |
## Edited by TdlMatias ##### | |
############################ | |
# Script to install Kubectl | |
############################ | |
KUBECTL_BIN=kubectl | |
function install_kubectl { | |
if [ -z $(which $KUBECTL_BIN) ] | |
then | |
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/$KUBECTL_BIN | |
chmod +x ${KUBECTL_BIN} | |
sudo mv ${KUBECTL_BIN} /usr/local/bin/${KUBECTL_BIN} | |
else | |
echo "Kubectl is most likely installed" | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment