From 21863237a7ec65ab8e77916962eef1cf00145188 Mon Sep 17 00:00:00 2001 From: Stephen Augustus Date: Tue, 11 Aug 2020 23:20:06 -0400 Subject: [PATCH] cluster/images/etcd: Build etcd@3.4.9-3 using debian-base@v2.1.3 Signed-off-by: Stephen Augustus --- cluster/images/etcd/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cluster/images/etcd/Makefile b/cluster/images/etcd/Makefile index 8ab8d472e42..0100da219aa 100644 --- a/cluster/images/etcd/Makefile +++ b/cluster/images/etcd/Makefile @@ -34,7 +34,7 @@ LATEST_ETCD_VERSION?=3.4.9 # REVISION provides a version number fo this image and all it's bundled # artifacts. It should start at zero for each LATEST_ETCD_VERSION and increment # for each revision of this image at that etcd version. -REVISION?=2 +REVISION?=3 # IMAGE_TAG Uniquely identifies k8s.gcr.io/etcd docker image with a tag of the form "-". IMAGE_TAG=$(LATEST_ETCD_VERSION)-$(REVISION) @@ -67,19 +67,19 @@ GOARM?=7 TEMP_DIR:=$(shell mktemp -d) ifeq ($(ARCH),amd64) - BASEIMAGE?=k8s.gcr.io/build-image/debian-base:v2.1.2 + BASEIMAGE?=k8s.gcr.io/build-image/debian-base:v2.1.3 endif ifeq ($(ARCH),arm) - BASEIMAGE?=k8s.gcr.io/build-image/debian-base-arm:v2.1.2 + BASEIMAGE?=k8s.gcr.io/build-image/debian-base-arm:v2.1.3 endif ifeq ($(ARCH),arm64) - BASEIMAGE?=k8s.gcr.io/build-image/debian-base-arm64:v2.1.2 + BASEIMAGE?=k8s.gcr.io/build-image/debian-base-arm64:v2.1.3 endif ifeq ($(ARCH),ppc64le) - BASEIMAGE?=k8s.gcr.io/build-image/debian-base-ppc64le:v2.1.2 + BASEIMAGE?=k8s.gcr.io/build-image/debian-base-ppc64le:v2.1.3 endif ifeq ($(ARCH),s390x) - BASEIMAGE?=k8s.gcr.io/build-image/debian-base-s390x:v2.1.2 + BASEIMAGE?=k8s.gcr.io/build-image/debian-base-s390x:v2.1.3 endif RUNNERIMAGE?=gcr.io/distroless/static:latest