Skip to content

Commit cbe033f

Browse files
fix broken cilium test due to upstream change
Signed-off-by: Harsha Narayana <[email protected]>
1 parent 59b7021 commit cbe033f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/cni/cilium/main_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ func TestMain(m *testing.M) {
6363
err = manager.RunInstall(
6464
helm.WithChart("cilium/cilium"),
6565
helm.WithNamespace("kube-system"),
66-
helm.WithArgs("--generate-name", "--set", "image.pullPolicy=IfNotPresent", "--set", "ipam.mode=kubernetes", "--wait"))
66+
helm.WithVersion("1.17.1"),
67+
helm.WithArgs("--generate-name", "--set", "image.pullPolicy=IfNotPresent", "--set", "ipam.mode=kubernetes", "--set", "ipam.multiPoolPreAllocation=null", "--wait"))
6768
if err != nil {
6869
return nil, err
6970
}

0 commit comments

Comments
 (0)