Skip to content

Commit

Permalink
Merge pull request #70 from quickwit-oss/fmassot/add-tcp-ports-for-he…
Browse files Browse the repository at this point in the history
…adless-service

Add tcp ports to headless service
  • Loading branch information
fmassot authored Mar 3, 2024
2 parents d9f80c1 + 87274c6 commit c87aaa4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/quickwit/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: quickwit
description: Sub-second search & analytics engine on cloud storage.
type: application
version: 0.5.5
version: 0.5.6
appVersion: "v0.7.1"
keywords:
- quickwit
Expand Down
13 changes: 11 additions & 2 deletions charts/quickwit/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,18 @@ spec:
clusterIP: None
publishNotReadyAddresses: true
ports:
- port: 7282
# Needed by istio with mTLS mode set to STRICT.
# 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: discovery
- name: tcp-http
port: 7280
protocol: TCP
- name: tcp-grpc
port: 7281
protocol: TCP
selector:
{{- include "quickwit.selectorLabels" . | nindent 4 }}
---
Expand Down

0 comments on commit c87aaa4

Please sign in to comment.