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