From 6fdb629cc9a13ba8cd1688709fafdff36a4d1d0a Mon Sep 17 00:00:00 2001 From: Tobias Trabelsi Date: Tue, 7 Oct 2025 09:44:50 +0200 Subject: [PATCH] fix(): use correct resource path --- internal/k8s.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/k8s.go b/internal/k8s.go index 893ad5f..e9a53e6 100644 --- a/internal/k8s.go +++ b/internal/k8s.go @@ -62,7 +62,7 @@ func RecreateIPPoolCrd(cfg *Config, name string, ips []string) error { } res := routeclient.Post(). - Resource("routes"). + Resource("ciliumloadbalancerippools"). Body([]byte(body)). Do(context.TODO())