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

Commit 91c850c

Browse files
author
Patrick Baxter
authored
Merge pull request #293 from squat/bump_hyperkube
pkg: bump hyperkube to v1.5.2_coreos.2
2 parents b2a25e2 + 4729306 commit 91c850c

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
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.1
57+
VENDOR_VERSION = v1.5.2+coreos.2
5858
ETCD_OPERATOR_VERSION = 7315cda48a511c8bcab1e575ee0626eae7d07d2d
5959
vendor:
6060
@echo "Creating k8s vendor for: $(VENDOR_VERSION)"

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.1
12+
Environment=KUBELET_VERSION=v1.5.2_coreos.2
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/quickstart/kubelet.master

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Service]
22
Environment=KUBELET_ACI=quay.io/coreos/hyperkube
3-
Environment=KUBELET_VERSION=v1.5.2_coreos.1
3+
Environment=KUBELET_VERSION=v1.5.2_coreos.2
44
Environment="RKT_OPTS=\
55
--volume etc-resolv,kind=host,source=/etc/resolv.conf --mount volume=etc-resolv,target=/etc/resolv.conf \
66
--volume var-lib-cni,kind=host,source=/var/lib/cni --mount volume=var-lib-cni,target=/var/lib/cni"

hack/quickstart/kubelet.worker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Service]
22
Environment=KUBELET_ACI=quay.io/coreos/hyperkube
3-
Environment=KUBELET_VERSION=v1.5.2_coreos.1
3+
Environment=KUBELET_VERSION=v1.5.2_coreos.2
44
Environment="RKT_OPTS=\
55
--volume etc-resolv,kind=host,source=/etc/resolv.conf --mount volume=etc-resolv,target=/etc/resolv.conf \
66
--volume var-lib-cni,kind=host,source=/var/lib/cni --mount volume=var-lib-cni,target=/var/lib/cni"

hack/single-node/user-data.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ coreos:
1717
[Service]
1818
EnvironmentFile=/etc/environment
1919
Environment=KUBELET_ACI=quay.io/coreos/hyperkube
20-
Environment=KUBELET_VERSION=v1.5.2_coreos.1
20+
Environment=KUBELET_VERSION=v1.5.2_coreos.2
2121
Environment="RKT_OPTS=--volume var-lib-cni,kind=host,source=/var/lib/cni --mount volume=var-lib-cni,target=/var/lib/cni"
2222
ExecStartPre=/bin/mkdir -p /etc/kubernetes/manifests
2323
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.2+coreos.1}
5+
CONFORMANCE_VERSION=${CONFORMANCE_VERSION:-v1.5.2+coreos.2}
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.1
38+
image: quay.io/coreos/hyperkube:v1.5.2_coreos.2
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.1
135+
image: quay.io/coreos/hyperkube:v1.5.2_coreos.2
136136
command:
137137
- /usr/bin/flock
138138
- --exclusive
@@ -229,7 +229,7 @@ spec:
229229
master: "true"
230230
containers:
231231
- name: kube-controller-manager
232-
image: quay.io/coreos/hyperkube:v1.5.2_coreos.1
232+
image: quay.io/coreos/hyperkube:v1.5.2_coreos.2
233233
command:
234234
- ./hyperkube
235235
- controller-manager
@@ -286,7 +286,7 @@ spec:
286286
master: "true"
287287
containers:
288288
- name: kube-scheduler
289-
image: quay.io/coreos/hyperkube:v1.5.2_coreos.1
289+
image: quay.io/coreos/hyperkube:v1.5.2_coreos.2
290290
command:
291291
- ./hyperkube
292292
- scheduler
@@ -319,7 +319,7 @@ spec:
319319
hostNetwork: true
320320
containers:
321321
- name: kube-proxy
322-
image: quay.io/coreos/hyperkube:v1.5.2_coreos.1
322+
image: quay.io/coreos/hyperkube:v1.5.2_coreos.2
323323
command:
324324
- /hyperkube
325325
- proxy

0 commit comments

Comments
 (0)