Skip to content
This repository has been archived by the owner on Sep 30, 2020. It is now read-only.

Commit

Permalink
Merge pull request #996 from camilb/bump-kubernetes-version
Browse files Browse the repository at this point in the history
Bump kubernetes version to 1.8.2.
  • Loading branch information
mumoshu authored Nov 5, 2017
2 parents 44efb9d + f0045b9 commit 976e946
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions contrib/bump-version
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

if [ $# -ne 1 ] || [ `expr $1 : ".*_.*"` == 0 ]; then
echo "USAGE: $0 <target-version>"
echo " example: $0 'v1.7.8_coreos.1'"
echo " example: $0 'v1.8.2_coreos.0'"
exit 1
fi

# the version needs to be published, see https://quay.io/repository/coreos/hyperkube?tag=latest&tab=tags
CURRENT_VERSION=${CURRENT_VERSION:-"v1.7.8_coreos.1"}
CURRENT_VERSION=${CURRENT_VERSION:-"v1.8.2_coreos.0"}
TARGET_VERSION=${1}

CURRENT_VERSION_BASE=${CURRENT_VERSION%%_*}
Expand Down
2 changes: 1 addition & 1 deletion core/controlplane/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
)

const (
k8sVer = "v1.7.8_coreos.1"
k8sVer = "v1.8.2_coreos.0"

credentialsDir = "credentials"
userDataDir = "userdata"
Expand Down
2 changes: 1 addition & 1 deletion core/controlplane/config/templates/cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,7 @@ worker:
# and pulling from quay or dockerhub is slow and you get many timeouts.

# Version of hyperkube image to use. This is the tag for the hyperkube image repository.
# kubernetesVersion: v1.7.8_coreos.1
# kubernetesVersion: v1.8.2_coreos.0

# Hyperkube image repository to use.
# hyperkubeImage:
Expand Down
2 changes: 1 addition & 1 deletion e2e/kubernetes/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM golang:1.8.3

ARG KUBERNETES_VERSION=${KUBERNETES_VERSION:-v1.7.8+coreos.1}
ARG KUBERNETES_VERSION=${KUBERNETES_VERSION:-v1.8.2+coreos.0}

RUN apt-get update && \
apt-get install -y rsync && \
Expand Down
2 changes: 1 addition & 1 deletion e2e/kubernetes/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
KUBERNETES_VERSION ?= v1.7.8+coreos.1
KUBERNETES_VERSION ?= v1.8.2+coreos.0
DOCKER_REPO ?=
DOCKER_TAG ?= $(DOCKER_REPO)kube-e2e:$(KUBERNETES_VERSION)
DOCKER_TAG_SANITIZED ?= $(shell echo $(DOCKER_TAG) | sed -e 's/+/_/')
Expand Down

0 comments on commit 976e946

Please sign in to comment.