Skip to content

Commit

Permalink
Merge pull request kubernetes#103488 from thejoycekung/automated-cher…
Browse files Browse the repository at this point in the history
…ry-pick-of-#103235-upstream-release-1.21

Automated cherry pick of kubernetes#103235: Update debian-base image to buster-v1.8.0
  • Loading branch information
k8s-ci-robot committed Jul 14, 2021
2 parents f967b1a + 0ce3bf0 commit f872796
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions build/common.sh
Expand Up @@ -86,9 +86,9 @@ readonly KUBE_RSYNC_PORT="${KUBE_RSYNC_PORT:-}"
readonly KUBE_CONTAINER_RSYNC_PORT=8730

# These are the default versions (image tags) for their respective base images.
readonly __default_debian_iptables_version=buster-v1.6.2
readonly __default_debian_iptables_version=buster-v1.6.5
readonly __default_go_runner_version=v2.3.1-go1.16.6-buster.0
readonly __default_setcap_version=buster-v2.0.1
readonly __default_setcap_version=buster-v2.0.3

# These are the base images for the Docker-wrapped binaries.
readonly KUBE_GORUNNER_IMAGE="${KUBE_GORUNNER_IMAGE:-$KUBE_BASE_IMAGE_REGISTRY/go-runner:$__default_go_runner_version}"
Expand Down
6 changes: 3 additions & 3 deletions build/dependencies.yaml
Expand Up @@ -132,7 +132,7 @@ dependencies:

# Base images
- name: "k8s.gcr.io/debian-base: dependents"
version: buster-v1.7.0
version: buster-v1.8.0
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-]+)*))?)
Expand All @@ -146,7 +146,7 @@ dependencies:
match: BASEIMAGE\?\=k8s\.gcr\.io\/build-image\/debian-base-s390x:[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-]+)*))?)

- name: "k8s.gcr.io/debian-iptables: dependents"
version: buster-v1.6.2
version: buster-v1.6.5
refPaths:
- path: build/common.sh
match: __default_debian_iptables_version=
Expand Down Expand Up @@ -218,7 +218,7 @@ dependencies:
match: configs\[Pause\] = Config{gcRegistry, "pause", "\d+\.\d+.\d+"}

- name: "k8s.gcr.io/setcap: dependents"
version: buster-v2.0.1
version: buster-v2.0.3
refPaths:
- path: build/common.sh
match: __default_setcap_version=
Expand Down
10 changes: 5 additions & 5 deletions cluster/images/etcd/Makefile
Expand Up @@ -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.8.0
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.8.0
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.8.0
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.8.0
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.8.0
endif

RUNNERIMAGE?=gcr.io/distroless/static:latest
Expand Down
2 changes: 1 addition & 1 deletion test/utils/image/manifest.go
Expand Up @@ -223,7 +223,7 @@ func initImageConfigs() (map[int]Config, map[int]Config) {
configs[CheckMetadataConcealment] = Config{promoterE2eRegistry, "metadata-concealment", "1.6"}
configs[CudaVectorAdd] = Config{e2eRegistry, "cuda-vector-add", "1.0"}
configs[CudaVectorAdd2] = Config{promoterE2eRegistry, "cuda-vector-add", "2.2"}
configs[DebianIptables] = Config{buildImageRegistry, "debian-iptables", "buster-v1.6.2"}
configs[DebianIptables] = Config{buildImageRegistry, "debian-iptables", "buster-v1.6.5"}
configs[EchoServer] = Config{promoterE2eRegistry, "echoserver", "2.3"}
configs[Etcd] = Config{gcEtcdRegistry, "etcd", "3.4.13-0"}
configs[GlusterDynamicProvisioner] = Config{promoterE2eRegistry, "glusterdynamic-provisioner", "v1.0"}
Expand Down

0 comments on commit f872796

Please sign in to comment.