diff --git a/test/integration/serving/serving_test.go b/test/integration/serving/serving_test.go index de9ad11fd7b..95b914b058b 100644 --- a/test/integration/serving/serving_test.go +++ b/test/integration/serving/serving_test.go @@ -327,5 +327,7 @@ func intPtr(x int) *int { } func fakeCloudProviderFactory(io.Reader) (cloudprovider.Interface, error) { - return &fake.Cloud{}, nil + return &fake.Cloud{ + DisableRoutes: true, // disable routes for server tests, otherwise --cluster-cidr is required + }, nil }