Last active
July 2, 2018 01:09
-
-
Save fabiogomezdiaz/f242428ee6265d4d911f18d62d5803ce to your computer and use it in GitHub Desktop.
Install IBM Cloud CLI, Container Service plugin, Container Registry plugin, Kubernetes CLI, Helm CLI, jq, and yaml
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 | |
#set -x | |
# Checking if bx is installed | |
grn=$'\e[1;32m' | |
end=$'\e[0m' | |
BX_PATH=$(command -v bx) | |
if [[ $? -ne 0 ]]; then | |
printf "\n\n${grn}Installing Bluemix CLI (bx)...${end}\n" | |
LATEST=$(curl -s https://clis.ng.bluemix.net/info | grep latestVersion | cut -d: -f2 | sed -e 's/"//g' -e 's/,//') | |
if [[ $OSTYPE =~ .*darwin.* ]]; then | |
curl -o Bluemix_CLI.pkg "http://public.dhe.ibm.com/cloud/bluemix/cli/bluemix-cli/Bluemix_CLI_${LATEST}.pkg" | |
sudo installer -pkg Bluemix_CLI.pkg -target / | |
rm Bluemix_CLI.pkg | |
elif [[ $OSTYPE =~ .*linux.* ]]; then | |
curl -o Bluemix_CLI.tar.gz "http://public.dhe.ibm.com/cloud/bluemix/cli/bluemix-cli/Bluemix_CLI_${LATEST}_amd64.tar.gz" | |
tar zxvf Bluemix_CLI.tar.gz | |
Bluemix_CLI/install_bluemix_cli | |
rm -f /tmp/Bluemix_CLI.tar.gz | |
rm -rf /tmp/Bluemix_CLI | |
fi | |
fi | |
# Check if bx cs is installed | |
bx cs &> /dev/null | |
if [[ $? -ne 0 ]]; then | |
printf "\n\n${grn}Installing Bluemix Container Service (bx cs) plugin...${end}\n" | |
bx plugin install container-service -r Bluemix | |
fi | |
# Check if bx cr is installed | |
bx cr &> /dev/null | |
if [[ $? -ne 0 ]]; then | |
printf "\n\n${grn}Installing Bluemix Container Registry Service (bx cr) plugin...${end}\n" | |
bx plugin install container-registry -r Bluemix | |
fi | |
# Checking if kubectl is installed | |
KUBE_PATH=$(command -v kubectl) | |
if [[ $? -ne 0 ]]; then | |
printf "\n\n${grn}Installing Kubernetes CLI (kubectl)...${end}\n" | |
if [[ $OSTYPE =~ .*darwin.* ]]; then | |
# OS X | |
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/darwin/amd64/kubectl | |
elif [[ $OSTYPE =~ .*linux.* ]]; then | |
# Linux | |
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl | |
fi | |
chmod +x ./kubectl | |
sudo mv ./kubectl /usr/local/bin/kubectl | |
fi | |
# Checking if helm is installed | |
KUBE_PATH=$(command -v helm) | |
if [[ $? -ne 0 ]]; then | |
printf "\n\n${grn}Installing Helm CLI (helm)...${end}\n" | |
curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get > get_helm.sh | |
chmod 700 get_helm.sh | |
./get_helm.sh | |
rm get_helm.sh | |
fi | |
# Installing jq | |
JQ_PATH=$(command -v jq) | |
if [[ $? -ne 0 ]]; then | |
printf "\n\n${grn}Installing jq${end}\n" | |
if [[ $OSTYPE =~ .*darwin.* ]]; then | |
# OS X | |
curl -Lo jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-osx-amd64 | |
elif [[ $OSTYPE =~ .*linux.* ]]; then | |
# Linux | |
curl -o jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 | |
fi | |
chmod +x ./jq | |
sudo mv ./jq /usr/local/bin/jq | |
fi | |
# Installing yaml | |
YAML_PATH=$(command -v yaml) | |
if [[ $? -ne 0 ]]; then | |
printf "\n\n${grn}Installing YAML${end}\n" | |
if [[ $OSTYPE =~ .*darwin.* ]]; then | |
# OS X | |
curl -LO https://github.com/mikefarah/yaml/releases/download/1.10/yaml_darwin_amd64 | |
mv yaml_darwin_amd64 yaml | |
elif [[ $OSTYPE =~ .*linux.* ]]; then | |
# Linux | |
curl -o yaml https://github.com/mikefarah/yaml/releases/download/1.8/yaml_linux_amd64 | |
fi | |
chmod +x ./yaml | |
sudo mv ./yaml /usr/local/bin/yaml | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment