promote Jinquan ni as MSB commiter and ptl
[msb/service-mesh.git] / install / 2_install_k8s_minion.sh
index 65fe0d8..4eea65b 100755 (executable)
@@ -26,33 +26,33 @@ deb http://apt.kubernetes.io/ kubernetes-xenial main
 EOF
 sudo apt-get update
 
-read -p "Install kubelet (y/n)?" -n1 choice
+read -p "Install kubelet (y/n)?" choice
 case "$choice" in
   y|Y ) sudo apt-get install -y kubelet=1.11.1-00;;
 esac
 printf "\n"
 
-read -p "Install kubeadm (y/n)?" -n1 choice
+read -p "Install kubeadm (y/n)?" choice
 case "$choice" in
   y|Y ) sudo apt-get install -y kubeadm=1.11.1-00;;
 esac
 printf "\n"
 
-read -p "Install kubectl (y/n)?" -n1 choice
+read -p "Install kubectl (y/n)?" choice
 case "$choice" in
   y|Y ) sudo apt-get install -y kubectl=1.11.1-00;;
 esac
 printf "\n"
 
-read -p "Install helm (y/n)?" -n1 choice
+read -p "Install helm (y/n)?" choice
 case "$choice" in
   y|Y )
-    wget https://storage.googleapis.com/kubernetes-helm/helm-v2.8.2-linux-amd64.tar.gz
-    tar -zxvf helm-v2.8.2-linux-amd64.tar.gz
+    wget https://storage.googleapis.com/kubernetes-helm/helm-v2.9.1-linux-amd64.tar.gz
+    tar -zxvf helm-v2.9.1-linux-amd64.tar.gz
     chmod o+x linux-amd64/helm
     sudo mv linux-amd64/helm /usr/local/bin/helm
     rm -rf linux-amd64
-    rm -rf helm-v2.8.2-linux-amd64.tar.gz
+    rm -rf helm-v2.9.1-linux-amd64.tar.gz
     ;;
 esac
 printf "\n"