From 0c90d8ddd9ba6b8f5729223239bc86552f25b2a5 Mon Sep 17 00:00:00 2001 From: Andrew Sy Kim Date: Thu, 3 Dec 2020 14:02:45 -0500 Subject: [PATCH] test/integration: disable fake cloud routes controllers in cloud-controller-manager secure serving tests Signed-off-by: Andrew Sy Kim --- test/integration/serving/serving_test.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 }