From 29d4b6d314a890825654520cc33388dfdc5eaa7c Mon Sep 17 00:00:00 2001 From: Roman Martsev <53344706+Windemiatrix@users.noreply.github.com> Date: Thu, 4 Dec 2025 20:00:16 +0500 Subject: [PATCH] chore: increase namespace list limit from 100 to 500 --- pkg/handler/connect.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/handler/connect.go b/pkg/handler/connect.go index a4cdc714..152c2242 100644 --- a/pkg/handler/connect.go +++ b/pkg/handler/connect.go @@ -666,7 +666,7 @@ func (c *ConnectOptions) setupDNS(ctx context.Context, svcInformer cache.SharedI } ns := []string{c.OriginNamespace} - list, err := c.clientset.CoreV1().Namespaces().List(ctx, metav1.ListOptions{Limit: 100}) + list, err := c.clientset.CoreV1().Namespaces().List(ctx, metav1.ListOptions{Limit: 500}) if err == nil { for _, item := range list.Items { if !sets.New[string](ns...).Has(item.Name) {