From c66bfc2a853115a4705a0e702170ce1254f88f9a Mon Sep 17 00:00:00 2001 From: Will Anderson Date: Sat, 4 Apr 2026 10:37:40 -0500 Subject: [PATCH] fix(redpanda): use nodePort 30094 (30093 already allocated) --- servers/legion/k8s/redpanda/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/servers/legion/k8s/redpanda/deployment.yaml b/servers/legion/k8s/redpanda/deployment.yaml index 7afe63d..2384c97 100644 --- a/servers/legion/k8s/redpanda/deployment.yaml +++ b/servers/legion/k8s/redpanda/deployment.yaml @@ -28,7 +28,7 @@ spec: - --reserve-memory=0M - --overprovisioned - --kafka-addr=INTERNAL://0.0.0.0:9092,EXTERNAL://0.0.0.0:9093 - - --advertise-kafka-addr=INTERNAL://redpanda.platform.svc.cluster.local:9092,EXTERNAL://100.64.0.1:30093 + - --advertise-kafka-addr=INTERNAL://redpanda.platform.svc.cluster.local:9092,EXTERNAL://100.64.0.1:30094 - --pandaproxy-addr=0.0.0.0:8082 - --advertise-pandaproxy-addr=redpanda.platform.svc.cluster.local:8082 ports: @@ -94,7 +94,7 @@ spec: - name: kafka-external port: 9093 targetPort: 9093 - nodePort: 30093 + nodePort: 30094 type: NodePort --- apiVersion: apps/v1