From bafd97fbafd9622fd0dccfc883790ae9cb9a576a Mon Sep 17 00:00:00 2001 From: Tobias Trabelsi Date: Tue, 7 Oct 2025 10:22:49 +0200 Subject: [PATCH] fix(): back to post --- internal/k8s.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/k8s.go b/internal/k8s.go index ebdf2b3..bd9502c 100644 --- a/internal/k8s.go +++ b/internal/k8s.go @@ -61,9 +61,8 @@ func RecreateIPPoolCrd(cfg *Config, name string, ips []string) error { return fmt.Errorf("error generating CRD: %v", err.Error()) } - res := routeclient.Put(). + res := routeclient.Post(). Resource("ciliumloadbalancerippools"). - Name(name). Body([]byte(body)). Do(context.TODO())