Merge pull request #104438 from nick5616/windows/build-ltsc2022-pause

Pause Images: Added base image for Windows Server 2022
This commit is contained in:
Kubernetes Prow Robot 2021-08-25 13:53:53 -07:00 committed by GitHub
commit 2a8ad72800
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,8 +24,8 @@ REV = $(shell git describe --contains --always --match='v*')
ARCH ?= amd64
# Operating systems supported: linux, windows
OS ?= linux
# OS Version for the Windows images: 1809, 1903, 1909 2004, 20H2
OSVERSION ?= 1809 1903 1909 2004 20H2
# OS Version for the Windows images: 1809, 1903, 1909 2004, 20H2, ltsc2022
OSVERSION ?= 1809 1903 1909 2004 20H2 ltsc2022
# The output type could either be docker (local), or registry.
# If it is registry, it will also allow us to push the Windows images.
@ -35,7 +35,7 @@ ALL_OS = linux windows
ALL_ARCH.linux = amd64 arm arm64 ppc64le s390x
ALL_OS_ARCH.linux = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch))
ALL_ARCH.windows = amd64
ALL_OSVERSIONS.windows := 1809 1903 1909 2004 20H2
ALL_OSVERSIONS.windows := 1809 1903 1909 2004 20H2 ltsc2022
ALL_OS_ARCH.windows = $(foreach arch, $(ALL_ARCH.windows), $(foreach osversion, ${ALL_OSVERSIONS.windows}, windows-$(arch)-${osversion}))
ALL_OS_ARCH = $(foreach os, $(ALL_OS), ${ALL_OS_ARCH.${os}})