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

Commit 72b5ae6

Browse files
authored
Merge pull request #282 from aaronlevy/conf15
Bump hyperkube image to v1.5.2_coreos.1
2 parents e5ff670 + 9a99bfc commit 72b5ae6

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ conformance-%: clean all
5454
#TODO(aaron): the k8s.io/client-go upstream package is a symlink with relative path. Making note because we change symlink path.
5555
# This will naively try and create a vendor dir from a k8s release
5656
# USE: make vendor VENDOR_VERSION=vX.Y.Z
57-
VENDOR_VERSION = v1.5.2+coreos.0
57+
VENDOR_VERSION = v1.5.2+coreos.1
5858
vendor:
5959
@echo "Creating k8s vendor for: $(VENDOR_VERSION)"
6060
@rm -rf vendor

hack/multi-node/user-data.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ coreos:
99
[Service]
1010
EnvironmentFile=/etc/environment
1111
Environment=KUBELET_ACI=quay.io/coreos/hyperkube
12-
Environment=KUBELET_VERSION=v1.5.2_coreos.0
12+
Environment=KUBELET_VERSION=v1.5.2_coreos.1
1313
Environment="RKT_OPTS=--volume var-lib-cni,kind=host,source=/var/lib/cni --mount volume=var-lib-cni,target=/var/lib/cni"
1414
ExecStartPre=/bin/mkdir -p /etc/kubernetes/manifests
1515
ExecStartPre=/bin/mkdir -p /etc/kubernetes/cni/net.d

hack/single-node/user-data.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ coreos:
1111
[Service]
1212
EnvironmentFile=/etc/environment
1313
Environment=KUBELET_ACI=quay.io/coreos/hyperkube
14-
Environment=KUBELET_VERSION=v1.5.2_coreos.0
14+
Environment=KUBELET_VERSION=v1.5.2_coreos.1
1515
Environment="RKT_OPTS=--volume var-lib-cni,kind=host,source=/var/lib/cni --mount volume=var-lib-cni,target=/var/lib/cni"
1616
ExecStartPre=/bin/mkdir -p /etc/kubernetes/manifests
1717
ExecStartPre=/bin/mkdir -p /etc/kubernetes/cni/net.d

hack/tests/conformance-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -euo pipefail
33

44
CONFORMANCE_REPO=${CONFORMANCE_REPO:-github.com/coreos/kubernetes}
5-
CONFORMANCE_VERSION=${CONFORMANCE_VERSION:-v1.5.1+coreos.0}
5+
CONFORMANCE_VERSION=${CONFORMANCE_VERSION:-v1.5.2+coreos.1}
66

77
usage() {
88
echo "USAGE:"

pkg/asset/internal/templates.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ spec:
3535
spec:
3636
containers:
3737
- name: kubelet
38-
image: quay.io/coreos/hyperkube:v1.5.2_coreos.0
38+
image: quay.io/coreos/hyperkube:v1.5.2_coreos.1
3939
command:
4040
- ./hyperkube
4141
- kubelet
@@ -132,7 +132,7 @@ spec:
132132
hostNetwork: true
133133
containers:
134134
- name: kube-apiserver
135-
image: quay.io/coreos/hyperkube:v1.5.2_coreos.0
135+
image: quay.io/coreos/hyperkube:v1.5.2_coreos.1
136136
command:
137137
- /usr/bin/flock
138138
- --exclusive
@@ -227,7 +227,7 @@ spec:
227227
spec:
228228
containers:
229229
- name: kube-controller-manager
230-
image: quay.io/coreos/hyperkube:v1.5.2_coreos.0
230+
image: quay.io/coreos/hyperkube:v1.5.2_coreos.1
231231
command:
232232
- ./hyperkube
233233
- controller-manager
@@ -271,7 +271,7 @@ spec:
271271
spec:
272272
containers:
273273
- name: kube-scheduler
274-
image: quay.io/coreos/hyperkube:v1.5.2_coreos.0
274+
image: quay.io/coreos/hyperkube:v1.5.2_coreos.1
275275
command:
276276
- ./hyperkube
277277
- scheduler
@@ -293,7 +293,7 @@ spec:
293293
hostNetwork: true
294294
containers:
295295
- name: kube-proxy
296-
image: quay.io/coreos/hyperkube:v1.5.2_coreos.0
296+
image: quay.io/coreos/hyperkube:v1.5.2_coreos.1
297297
command:
298298
- /hyperkube
299299
- proxy

0 commit comments

Comments
 (0)