Upgrade debian-base to buster v1.7.1

This commit is contained in:
Mengjiao Liu 2021-06-04 18:23:49 +08:00
parent 7696a48612
commit dc5626cc18
2 changed files with 7 additions and 7 deletions

View File

@ -130,7 +130,7 @@ dependencies:
# Base images
- name: "k8s.gcr.io/debian-base: dependents"
version: buster-v1.7.0
version: buster-v1.7.1
refPaths:
- path: cluster/images/etcd/Makefile
match: BASEIMAGE\?\=k8s\.gcr\.io\/build-image\/debian-base:[a-zA-Z]+\-v((([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)

View File

@ -34,7 +34,7 @@ LATEST_ETCD_VERSION?=3.5.0-rc.0
# REVISION provides a version number for 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?=0
REVISION?=1
# IMAGE_TAG Uniquely identifies k8s.gcr.io/etcd docker image with a tag of the form "<etcd-version>-<revision>".
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:buster-v1.7.0
BASEIMAGE?=k8s.gcr.io/build-image/debian-base:buster-v1.7.1
endif
ifeq ($(ARCH),arm)
BASEIMAGE?=k8s.gcr.io/build-image/debian-base-arm:buster-v1.7.0
BASEIMAGE?=k8s.gcr.io/build-image/debian-base-arm:buster-v1.7.1
endif
ifeq ($(ARCH),arm64)
BASEIMAGE?=k8s.gcr.io/build-image/debian-base-arm64:buster-v1.7.0
BASEIMAGE?=k8s.gcr.io/build-image/debian-base-arm64:buster-v1.7.1
endif
ifeq ($(ARCH),ppc64le)
BASEIMAGE?=k8s.gcr.io/build-image/debian-base-ppc64le:buster-v1.7.0
BASEIMAGE?=k8s.gcr.io/build-image/debian-base-ppc64le:buster-v1.7.1
endif
ifeq ($(ARCH),s390x)
BASEIMAGE?=k8s.gcr.io/build-image/debian-base-s390x:buster-v1.7.0
BASEIMAGE?=k8s.gcr.io/build-image/debian-base-s390x:buster-v1.7.1
endif
RUNNERIMAGE?=gcr.io/distroless/static:latest