Skip to content

Commit 8c3949e

Browse files
committed
fix flaky node-skew tests by disabling node autoupgrade
1 parent fef6601 commit 8c3949e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/k8s-integration/cluster.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ func clusterUpGKE(gceZone, gceRegion string, numNodes int, numWindowsNodes int,
183183
var cmd *exec.Cmd
184184
cmdParams := []string{"container", "clusters", "create", *gkeTestClusterName,
185185
locationArg, locationVal, "--num-nodes", strconv.Itoa(numNodes),
186-
"--quiet", "--machine-type", "n1-standard-2", "--image-type", imageType}
186+
"--quiet", "--machine-type", "n1-standard-2", "--image-type", imageType, "--no-enable-autoupgrade"}
187187
if isVariableSet(gkeClusterVer) {
188188
cmdParams = append(cmdParams, "--cluster-version", *gkeClusterVer)
189189
} else {

0 commit comments

Comments
 (0)