This repository was archived by the owner on Sep 30, 2020. It is now read-only.
File tree 5 files changed +6
-6
lines changed
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 6
6
7
7
if [ $# -ne 1 ] || [ ` expr $1 : " .*.*" ` == 0 ]; then
8
8
echo " USAGE: $0 <target-version>"
9
- echo " example: $0 'v1.9.1 '"
9
+ echo " example: $0 'v1.9.3 '"
10
10
exit 1
11
11
fi
12
12
13
13
# 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 " }
15
15
TARGET_VERSION=${1}
16
16
17
17
CURRENT_VERSION_BASE=${CURRENT_VERSION%% _* }
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import (
24
24
)
25
25
26
26
const (
27
- k8sVer = "v1.9.1 "
27
+ k8sVer = "v1.9.3 "
28
28
29
29
credentialsDir = "credentials"
30
30
userDataDir = "userdata"
Original file line number Diff line number Diff line change @@ -952,7 +952,7 @@ worker:
952
952
# and pulling from quay or dockerhub is slow and you get many timeouts.
953
953
954
954
# 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
956
956
957
957
# Hyperkube image repository to use.
958
958
# hyperkubeImage:
Original file line number Diff line number Diff line change 1
1
FROM golang:1.8.3
2
2
3
- ARG KUBERNETES_VERSION=${KUBERNETES_VERSION:-v1.9.1 }
3
+ ARG KUBERNETES_VERSION=${KUBERNETES_VERSION:-v1.9.3 }
4
4
5
5
RUN apt-get update && \
6
6
apt-get install -y rsync && \
Original file line number Diff line number Diff line change 1
- KUBERNETES_VERSION ?= v1.9.1
1
+ KUBERNETES_VERSION ?= v1.9.3
2
2
DOCKER_REPO ?=
3
3
DOCKER_TAG ?= $(DOCKER_REPO ) kube-e2e:$(KUBERNETES_VERSION )
4
4
DOCKER_TAG_SANITIZED ?= $(shell echo $(DOCKER_TAG ) | sed -e 's/+/_/')
You can’t perform that action at this time.
0 commit comments