Bump windows pause image base to mcr.microsoft.com/oss/kubernetes/windows-pause-image-base:v0.4.1

Signed-off-by: Mark Rossett <marosset@microsoft.com>
This commit is contained in:
Mark Rossett 2025-02-11 15:44:06 -08:00
parent 9a9f10bc7b
commit faa23642f5
No known key found for this signature in database
GPG Key ID: 84F945B67B6229E8
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
# 3.10.1
* Updating base image for Windows pause container to `mcr.microsoft.com/oss/kubernetes/windows-pause-image-base:v0.4.1` to pick up security fixes in the nanoserver base image. ([#130102](https://github.com/kubernetes/kubernetes/pull/130102), [@marosset](https://github.com/marosset))
# 3.10
* Add support for the -v flag on Windows. It prints the version similarly to Linux. ([#125067](https://github.com/kubernetes/kubernetes/pull/125067), [@neolit123](https://github.com/neolit123))

View File

@ -17,7 +17,7 @@
REGISTRY ?= staging-k8s.gcr.io
IMAGE = $(REGISTRY)/pause
TAG ?= 3.10
TAG ?= 3.10.1
REV = $(shell git describe --contains --always --match='v*')
# Architectures supported: amd64, arm, arm64, ppc64le and s390x
@ -69,7 +69,7 @@ TRIPLE.linux-s390x := s390x-linux-gnu
TRIPLE := ${TRIPLE.${OS}-${ARCH}}
BASE.linux := scratch
# Source for windows pause image base is located at https://github.com/microsoft/windows-pause-image-base
BASE.windows := mcr.microsoft.com/oss/kubernetes/windows-pause-image-base:v0.2
BASE.windows := mcr.microsoft.com/oss/kubernetes/windows-pause-image-base:v0.4.1
BASE := ${BASE.${OS}}
# If you want to build AND push all containers, see the 'all-push' rule.