Created
December 20, 2019 10:42
-
-
Save tdlmatias/51ac6a950deb538479c971268a604bb5 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
Please test it before use it ... :-) All feed backs are welcome