Skip to content

Commit

Permalink
update go to 1.6.3
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <me@jessfraz.com>
  • Loading branch information
jessfraz committed Jul 18, 2016
1 parent f50bb73 commit a333cf4
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build/build-image/cross/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# This file creates a standard build environment for building cross
# platform go binary for the architecture kubernetes cares about.

FROM golang:1.6.2
FROM golang:1.6.3

ENV GOARM 6
ENV KUBE_DYNAMIC_CROSSPLATFORMS \
Expand Down
2 changes: 1 addition & 1 deletion build/build-image/cross/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.6.2-2
v1.6.3-0
4 changes: 2 additions & 2 deletions build/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ readonly KUBE_GCS_DELETE_EXISTING="${KUBE_GCS_DELETE_EXISTING:-n}"

# Constants
readonly KUBE_BUILD_IMAGE_REPO=kube-build
readonly KUBE_BUILD_IMAGE_CROSS_TAG="v1.6.2-2"
readonly KUBE_BUILD_IMAGE_CROSS_TAG="v1.6.3-0"
# KUBE_BUILD_DATA_CONTAINER_NAME=kube-build-data-<hash>"

# Here we map the output directories across both the local and remote _output
Expand Down Expand Up @@ -173,7 +173,7 @@ function kube::build::docker_available_on_osx() {
kube::log::status "Using Docker for MacOS"
return 0
fi

kube::log::status "No docker host is set. Checking options for setting one..."
if [[ -z "$(which docker-machine)" && -z "$(which boot2docker)" ]]; then
kube::log::status "It looks like you're running Mac OS X, yet none of Docker for Mac, docker-machine or boot2docker are on the path."
Expand Down
2 changes: 1 addition & 1 deletion hack/jenkins/dockerized-e2e-runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ docker run --rm=true -i \
-e "WORKSPACE=/workspace" \
${KUBEKINS_SERVICE_ACCOUNT_FILE:+-e "KUBEKINS_SERVICE_ACCOUNT_FILE=/service-account.json"} \
"${docker_extra_args[@]:+${docker_extra_args[@]}}" \
gcr.io/google_containers/kubekins-test:go1.6.2-docker1.9.1-rev3 \
gcr.io/google_containers/kubekins-test:go1.6.3-docker1.9.1-rev1 \
bash -c "bash <(curl -fsS --retry 3 --keepalive-time 2 'https://raw.githubusercontent.com/kubernetes/kubernetes/master/hack/jenkins/e2e-runner.sh')"
2 changes: 1 addition & 1 deletion hack/jenkins/gotest-dockerized.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ docker run --rm=true \
-e "KUBE_VERIFY_GIT_BRANCH=${KUBE_VERIFY_GIT_BRANCH:-}" \
-e "REPO_DIR=${REPO_DIR}" \
-e "HOST_ARTIFACTS_DIR=${HOST_ARTIFACTS_DIR}" \
-i gcr.io/google_containers/kubekins-test:go1.6.2-docker1.9.1-rev3 \
-i gcr.io/google_containers/kubekins-test:go1.6.3-docker1.9.1-rev1 \
bash -c "cd kubernetes && ${KUBE_TEST_SCRIPT:-./hack/jenkins/test-dockerized.sh}"
2 changes: 1 addition & 1 deletion hack/jenkins/test-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# This file creates a build environment for building and running kubernetes
# unit and integration tests

FROM golang:1.6.2
FROM golang:1.6.3
MAINTAINER Jeff Lowdermilk <jeffml@google.com>

ENV WORKSPACE /workspace
Expand Down
2 changes: 1 addition & 1 deletion hack/jenkins/test-image/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ all: push

# Tag format: $GO_VERSION-$EMBEDDED_DOCKER_VERSION-$REVISION
# These versions are specified in the Dockerfile
TAG = go1.6.2-docker1.9.1-rev3
TAG = go1.6.3-docker1.9.1-rev1

container:
docker build -t gcr.io/google_containers/kubekins-test .
Expand Down

0 comments on commit a333cf4

Please sign in to comment.