Skip to content

Commit 41e3057

Browse files
Merge pull request #5025 from jeremyje/win20h2
Add references to Windows 20H2 test images.
2 parents 88d9736 + 1c81071 commit 41e3057

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

client_windows_test.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,12 @@ func init() {
5050
testImage = "mcr.microsoft.com/windows/nanoserver:1809"
5151
case osversion.V19H1:
5252
testImage = "mcr.microsoft.com/windows/nanoserver:1903"
53-
case 18363: // this isn't in osversion yet, but the image should be available
53+
case osversion.V19H2:
5454
testImage = "mcr.microsoft.com/windows/nanoserver:1909"
55-
case 19041: // this isn't in osversion yet, but the image should be available
55+
case osversion.V20H1:
5656
testImage = "mcr.microsoft.com/windows/nanoserver:2004"
57+
case osversion.V20H2:
58+
testImage = "mcr.microsoft.com/windows/nanoserver:20H2"
5759
default:
5860
fmt.Println("No test image defined for Windows build version:", b)
5961
panic("No windows test image found for this Windows build")

pkg/cri/config/config_windows.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func DefaultConfig() PluginConfig {
5454
TLSKeyFile: "",
5555
TLSCertFile: "",
5656
},
57-
SandboxImage: "mcr.microsoft.com/oss/kubernetes/pause:1.4.0",
57+
SandboxImage: "mcr.microsoft.com/oss/kubernetes/pause:1.4.1",
5858
StatsCollectPeriod: 10,
5959
MaxContainerLogLineSize: 16 * 1024,
6060
Registry: Registry{

0 commit comments

Comments
 (0)