From 14eb3ffd7b78d3aa59331e928e6551735ca9486f Mon Sep 17 00:00:00 2001 From: Atanas Todorov Date: Fri, 10 Jan 2025 11:20:05 +0200 Subject: [PATCH] provide default namespace as ucp resources are namespaced ones --- k8s/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/client.go b/k8s/client.go index 2758af4..057083f 100644 --- a/k8s/client.go +++ b/k8s/client.go @@ -231,7 +231,7 @@ func (k8sc *Client) _search(ctx context.Context, groups, categories, kinds, name } //This is the case when namespace resource does not exist in the cluster.This is KCP case. //Continue the execution of this function with emtpy namespace list - + nsNames = append(nsNames, "default") } nsList = nsNames }