From a9e9a44087be51eb8ab61b4d765bb536e7f6ecfc Mon Sep 17 00:00:00 2001 From: Jakub Warczarek Date: Thu, 26 Sep 2024 16:00:11 +0200 Subject: [PATCH] Update test/integration/test_kongplugininstallation.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Patryk Małek --- test/integration/test_kongplugininstallation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/test_kongplugininstallation.go b/test/integration/test_kongplugininstallation.go index 148536c23..dfb98198c 100644 --- a/test/integration/test_kongplugininstallation.go +++ b/test/integration/test_kongplugininstallation.go @@ -208,7 +208,7 @@ func deployGatewayWithKPI( t *testing.T, cleaner *clusters.Cleaner, namespace string, ) (gatewayIPAddress string, gatewayConfigNN, httpRouteNN k8stypes.NamespacedName) { // NOTE: Disable webhook for KIC, because it checks for the plugin in Kong Gateway and rejects, - // thus it requires strict order of deployment. + // thus it requires strict order of deployment which is not guaranteed. gatewayConfig := helpers.GenerateGatewayConfiguration(namespace, helpers.WithWebhookDisabled()) t.Logf("deploying GatewayConfiguration %s/%s", gatewayConfig.Namespace, gatewayConfig.Name) gatewayConfig, err := GetClients().OperatorClient.ApisV1beta1().GatewayConfigurations(namespace).Create(GetCtx(), gatewayConfig, metav1.CreateOptions{})