diff --git a/.travis.yml b/.travis.yml index 7b4cf29dde..d7f2c2cf56 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,5 @@ language: go go: - #- 1.5 go test arguments are different in 1.5 :-( - #- 1.6 issues with OSX release, and 1.7 is required now by core - - 1.7 - 1.8 - tip diff --git a/Makefile b/Makefile index 9c18059861..24185eb5a7 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ GCS_URL=$(GCS_LOCATION:gs://%=https://storage.googleapis.com/%) LATEST_FILE?=latest-ci.txt GOPATH_1ST=$(shell echo ${GOPATH} | cut -d : -f 1) UNIQUE:=$(shell date +%s) -GOVERSION=1.8.1 +GOVERSION=1.8.3 # See http://stackoverflow.com/questions/18136918/how-to-get-current-relative-directory-of-your-makefile MAKEDIR:=$(strip $(shell dirname "$(realpath $(lastword $(MAKEFILE_LIST)))")) diff --git a/images/protokube-builder/Dockerfile b/images/protokube-builder/Dockerfile index fdc73c7eae..1a3415e232 100644 --- a/images/protokube-builder/Dockerfile +++ b/images/protokube-builder/Dockerfile @@ -21,7 +21,7 @@ FROM debian:jessie RUN apt-get update && apt-get install --yes curl git gcc make # Install golang -RUN curl -L https://storage.googleapis.com/golang/go1.7.3.linux-amd64.tar.gz | tar zx -C /usr/local +RUN curl -L https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz | tar zx -C /usr/local ENV PATH $PATH:/usr/local/go/bin COPY onbuild.sh /onbuild.sh diff --git a/images/protokube-builder/onbuild.sh b/images/protokube-builder/onbuild.sh index 72740c6e96..12474eb6a8 100755 --- a/images/protokube-builder/onbuild.sh +++ b/images/protokube-builder/onbuild.sh @@ -34,5 +34,5 @@ cp /go/bin/channels /src/.build/artifacts/ # channels uses protokube cd /src/.build/artifacts/ -curl -O https://storage.googleapis.com/kubernetes-release/release/v1.6.1/bin/linux/amd64/kubectl +curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl chmod +x kubectl