From 31101408d32a96e3e94f8ef3ff32a1ffffdc4127 Mon Sep 17 00:00:00 2001 From: Claudiu Belu Date: Mon, 14 Dec 2020 04:41:14 -0800 Subject: [PATCH] test images: Adds 20H2 to the windows_os_versions We are planing to test and support 20H2 release of Windows, thus, we need to build test images for it as well. The busybox image already has a BASEIMAGE entry for it, but we also need to add it to the image-util.sh's windows_os_versions, so the OS Version can be properly included in the manifest list. --- test/images/image-util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/images/image-util.sh b/test/images/image-util.sh index 9cf483fe765..14761cff96d 100755 --- a/test/images/image-util.sh +++ b/test/images/image-util.sh @@ -36,7 +36,7 @@ source "${KUBE_ROOT}/hack/lib/util.sh" # Mapping of go ARCH to actual architectures shipped part of multiarch/qemu-user-static project declare -A QEMUARCHS=( ["amd64"]="x86_64" ["arm"]="arm" ["arm64"]="aarch64" ["ppc64le"]="ppc64le" ["s390x"]="s390x" ) -windows_os_versions=(1809 1903 1909 2004) +windows_os_versions=(1809 1903 1909 2004 20H2) declare -A WINDOWS_OS_VERSIONS_MAP initWindowsOsVersions() {