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

Commit 1960a0e

Browse files
authored
Merge pull request #894 from dghubble/kubernetes-v1.9.3
Update hyperkube image from v1.9.2 to v1.9.3
2 parents 5120526 + fbc11c2 commit 1960a0e

File tree

7 files changed

+12
-7
lines changed

7 files changed

+12
-7
lines changed

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ LOCAL_OS:=$(shell uname | tr A-Z a-z)
88
GOFILES:=$(shell find . -name '*.go' | grep -v -E '(./vendor)')
99
GOPATH_BIN:=$(shell echo ${GOPATH} | awk 'BEGIN { FS = ":" }; { print $1 }')/bin
1010
LDFLAGS=-X github.com/kubernetes-incubator/bootkube/pkg/version.Version=$(shell $(CURDIR)/build/git-version.sh)
11+
TERRAFORM:=$(shell command -v terraform 2> /dev/null)
1112

1213
all: \
1314
_output/bin/$(LOCAL_OS)/bootkube \
@@ -31,7 +32,11 @@ release: \
3132

3233
check:
3334
@gofmt -l -s $(GOFILES) | read; if [ $$? == 0 ]; then gofmt -s -d $(GOFILES); exit 1; fi
34-
@terraform fmt -check ; if [ ! $$? -eq 0 ]; then exit 1; fi
35+
ifdef TERRAFORM
36+
$(TERRAFORM) fmt -check ; if [ ! $$? -eq 0 ]; then exit 1; fi
37+
else
38+
@echo -e "\e[91mSkipping terraform lint. terraform binary not available.\e[0m"
39+
endif
3540
@go vet $(shell go list ./... | grep -v '/vendor/')
3641
@./scripts/verify-gopkg.sh
3742
@go test -v $(shell go list ./... | grep -v '/vendor/\|/e2e')

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_IMAGE_URL=docker://gcr.io/google_containers/hyperkube
12-
Environment=KUBELET_IMAGE_TAG=v1.9.2
12+
Environment=KUBELET_IMAGE_TAG=v1.9.3
1313
Environment="RKT_RUN_ARGS=--uuid-file-save=/var/cache/kubelet-pod.uuid \
1414
--volume var-lib-cni,kind=host,source=/var/lib/cni \
1515
--volume var-lib-kubelet,kind=host,source=/var/lib/kubelet \

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_IMAGE_URL=docker://gcr.io/google_containers/hyperkube
3-
Environment=KUBELET_IMAGE_TAG=v1.9.2
3+
Environment=KUBELET_IMAGE_TAG=v1.9.3
44
Environment=KUBELET_MINIMUM_CONTAINER_TTL_DURATION=3m0s
55
Environment=KUBELET_MAXIMUM_DEAD_CONTAINERS=-1
66
Environment=KUBELET_MAXIMUM_DEAD_CONTAINERS_PER_CONTAINER=1

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_IMAGE_URL=docker://gcr.io/google_containers/hyperkube
3-
Environment=KUBELET_IMAGE_TAG=v1.9.2
3+
Environment=KUBELET_IMAGE_TAG=v1.9.3
44
Environment=KUBELET_MINIMUM_CONTAINER_TTL_DURATION=3m0s
55
Environment=KUBELET_MAXIMUM_DEAD_CONTAINERS=-1
66
Environment=KUBELET_MAXIMUM_DEAD_CONTAINERS_PER_CONTAINER=1

hack/single-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_IMAGE_URL=docker://gcr.io/google_containers/hyperkube
12-
Environment=KUBELET_IMAGE_TAG=v1.9.2
12+
Environment=KUBELET_IMAGE_TAG=v1.9.3
1313
Environment="RKT_RUN_ARGS=--uuid-file-save=/var/cache/kubelet-pod.uuid \
1414
--volume var-lib-cni,kind=host,source=/var/lib/cni \
1515
--volume var-lib-kubelet,kind=host,source=/var/lib/kubelet \

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/kubernetes/kubernetes}
5-
CONFORMANCE_VERSION=${CONFORMANCE_VERSION:-v1.9.2}
5+
CONFORMANCE_VERSION=${CONFORMANCE_VERSION:-v1.9.3}
66

77
usage() {
88
echo "USAGE:"

pkg/asset/images.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var DefaultImages = ImageVersions{
77
FlannelCNI: "quay.io/coreos/flannel-cni:v0.3.0",
88
Calico: "quay.io/calico/node:v2.6.6",
99
CalicoCNI: "quay.io/calico/cni:v1.11.2",
10-
Hyperkube: "gcr.io/google_containers/hyperkube:v1.9.2",
10+
Hyperkube: "gcr.io/google_containers/hyperkube:v1.9.3",
1111
KubeDNS: "gcr.io/google_containers/k8s-dns-kube-dns-amd64:1.14.8",
1212
KubeDNSMasq: "gcr.io/google_containers/k8s-dns-dnsmasq-nanny-amd64:1.14.8",
1313
KubeDNSSidecar: "gcr.io/google_containers/k8s-dns-sidecar-amd64:1.14.8",

0 commit comments

Comments
 (0)