From e1cabbf2bb605d8f3334b5ea27b9d8346e673020 Mon Sep 17 00:00:00 2001 From: Vegard Hagen Date: Sun, 8 Jun 2025 18:45:54 +0200 Subject: [PATCH] fix(gateway): use the addresses field instead of infrastructure annotation See GH issue #94 This was fixed in https://github.com/cilium/cilium/issues/32865 Signed-off-by: Vegard Hagen --- k8s/infra/network/gateway/gw-external.yaml | 6 +++--- k8s/infra/network/gateway/gw-internal.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/k8s/infra/network/gateway/gw-external.yaml b/k8s/infra/network/gateway/gw-external.yaml index ccfa580..cfe65df 100644 --- a/k8s/infra/network/gateway/gw-external.yaml +++ b/k8s/infra/network/gateway/gw-external.yaml @@ -5,9 +5,9 @@ metadata: namespace: gateway spec: gatewayClassName: cilium - infrastructure: - annotations: - io.cilium/lb-ipam-ips: 192.168.1.222 + addresses: + - type: IPAddress + value: 192.168.1.222 listeners: - protocol: HTTPS port: 443 diff --git a/k8s/infra/network/gateway/gw-internal.yaml b/k8s/infra/network/gateway/gw-internal.yaml index 036d504..b9a862c 100644 --- a/k8s/infra/network/gateway/gw-internal.yaml +++ b/k8s/infra/network/gateway/gw-internal.yaml @@ -5,9 +5,9 @@ metadata: namespace: gateway spec: gatewayClassName: cilium - infrastructure: - annotations: - io.cilium/lb-ipam-ips: 192.168.1.220 + addresses: + - type: IPAddress + value: 192.168.1.220 listeners: - protocol: HTTPS port: 443