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

Commit 53bc676

Browse files
authored
Merge pull request #1236 from mumoshu/k8s-1.9.3
Bump Kubernetes to v1.9.3
2 parents 137aa37 + 4cdbf7b commit 53bc676

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

contrib/bump-version

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66

77
if [ $# -ne 1 ] || [ `expr $1 : ".*.*"` == 0 ]; then
88
echo "USAGE: $0 <target-version>"
9-
echo " example: $0 'v1.9.1'"
9+
echo " example: $0 'v1.9.3'"
1010
exit 1
1111
fi
1212

1313
# the version needs to be published, see https://quay.io/repository/coreos/hyperkube?tag=latest&tab=tags
14-
CURRENT_VERSION=${CURRENT_VERSION:-"v1.9.1"}
14+
CURRENT_VERSION=${CURRENT_VERSION:-"v1.9.3"}
1515
TARGET_VERSION=${1}
1616

1717
CURRENT_VERSION_BASE=${CURRENT_VERSION%%_*}

core/controlplane/config/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
)
2525

2626
const (
27-
k8sVer = "v1.9.1"
27+
k8sVer = "v1.9.3"
2828

2929
credentialsDir = "credentials"
3030
userDataDir = "userdata"

core/controlplane/config/templates/cluster.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ worker:
952952
# and pulling from quay or dockerhub is slow and you get many timeouts.
953953

954954
# Version of hyperkube image to use. This is the tag for the hyperkube image repository.
955-
# kubernetesVersion: v1.9.1
955+
# kubernetesVersion: v1.9.3
956956

957957
# Hyperkube image repository to use.
958958
# hyperkubeImage:

e2e/kubernetes/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM golang:1.8.3
22

3-
ARG KUBERNETES_VERSION=${KUBERNETES_VERSION:-v1.9.1}
3+
ARG KUBERNETES_VERSION=${KUBERNETES_VERSION:-v1.9.3}
44

55
RUN apt-get update && \
66
apt-get install -y rsync && \

e2e/kubernetes/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
KUBERNETES_VERSION ?= v1.9.1
1+
KUBERNETES_VERSION ?= v1.9.3
22
DOCKER_REPO ?=
33
DOCKER_TAG ?= $(DOCKER_REPO)kube-e2e:$(KUBERNETES_VERSION)
44
DOCKER_TAG_SANITIZED ?= $(shell echo $(DOCKER_TAG) | sed -e 's/+/_/')

0 commit comments

Comments
 (0)