From 428dc26b0b222ccfbe94303fae0110c47106e20e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Va=C5=A1ek?= Date: Tue, 19 May 2026 15:23:57 +0200 Subject: [PATCH] fix: listen on IPv6 loopback (::1) in addition to 127.0.0.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add extraPortMappings for ::1 on ports 80, 443, and 30022 so the Kind cluster is reachable via both IPv4 and IPv6 loopback addresses. Signed-off-by: Matej VaĊĦek Co-authored-by: Claude --- hack/cluster.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hack/cluster.sh b/hack/cluster.sh index 05bc718978..d0017b219a 100755 --- a/hack/cluster.sh +++ b/hack/cluster.sh @@ -117,12 +117,21 @@ nodes: - containerPort: 80 hostPort: 80 listenAddress: "127.0.0.1" + - containerPort: 80 + hostPort: 80 + listenAddress: "::1" - containerPort: 443 hostPort: 443 listenAddress: "127.0.0.1" + - containerPort: 443 + hostPort: 443 + listenAddress: "::1" - containerPort: 30022 hostPort: 30022 listenAddress: "127.0.0.1" + - containerPort: 30022 + hostPort: 30022 + listenAddress: "::1" containerdConfigPatches: - |- [plugins."io.containerd.grpc.v1.cri".registry.mirrors."registry.localtest.me"]