We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed0dde6 commit 18a3f4aCopy full SHA for 18a3f4a
src/test/java/org/csanchez/jenkins/plugins/kubernetes/pipeline/ContainerExecDecoratorWindowsTest.java
@@ -128,7 +128,8 @@ public void configureCloud() throws Exception {
128
.withCommand("powershell")
129
.withArgs("Start-Sleep", "2147483")
130
.build())
131
- .withNodeSelector(Collections.singletonMap("kubernetes.io/os", "windows"))
+ .addToNodeSelector("kubernetes.io/os", "windows")
132
+ .addToNodeSelector("node.kubernetes.io/windows-build", "10.0.17763")
133
.withTerminationGracePeriodSeconds(0L)
134
.endSpec().build());
135
0 commit comments