From 87274c6648d75644c01a932ddf2a71b73b03cae4 Mon Sep 17 00:00:00 2001 From: fmassot Date: Sun, 3 Mar 2024 15:39:05 +0100 Subject: [PATCH] Rename headless service udp port to udp to work with istio... --- charts/quickwit/templates/service.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/charts/quickwit/templates/service.yaml b/charts/quickwit/templates/service.yaml index 82410ae..cc84d42 100644 --- a/charts/quickwit/templates/service.yaml +++ b/charts/quickwit/templates/service.yaml @@ -28,20 +28,18 @@ spec: clusterIP: None publishNotReadyAddresses: true ports: - - port: 7282 - protocol: UDP - name: discovery # Needed by istio with mTLS mode set to STRICT. - # The port names must starts with "tcp-" to work... + # The port names must starts with "tcp-" or "udp-" to work... # See https://istio.io/latest/docs/ops/common-problems/network-issues/#503-error-while-accessing-headless-services + - name: udp + port: 7282 + protocol: UDP - name: tcp-http port: 7280 protocol: TCP - targetPort: 7280 - name: tcp-grpc port: 7281 protocol: TCP - targetPort: 7281 selector: {{- include "quickwit.selectorLabels" . | nindent 4 }} ---