Fix k8s build (#278)

This commit is contained in:
Manuel Alejandro de Brito Fontes 2016-09-21 16:05:18 -03:00 committed by Miek Gieben
parent 5301c5af5f
commit d250742d9e
4 changed files with 20 additions and 31 deletions

View file

@ -5,7 +5,7 @@ set -e
# Based on instructions at: http://kubernetes.io/docs/getting-started-guides/docker/
#K8S_VERSION=$(curl -sS https://storage.googleapis.com/kubernetes-release/release/latest.txt)
K8S_VERSION="v1.2.4"
K8S_VERSION="v1.3.7"
ARCH="amd64"

View file

@ -10,7 +10,7 @@ cd ${BASEDIR}
echo "Setting up kubectl..."
if [ ! -e kubectl ]; then
curl -O http://storage.googleapis.com/kubernetes-release/release/v1.2.4/bin/linux/amd64/kubectl
curl -O http://storage.googleapis.com/kubernetes-release/release/v1.3.7/bin/linux/amd64/kubectl
chmod u+x kubectl
fi