From 7813b62cc6bad8927e60e949ec47fa9a8f149f6f Mon Sep 17 00:00:00 2001 From: bp99 Date: Mon, 21 Apr 2025 15:26:31 +0200 Subject: [PATCH] chart-wyoming_piper: add optional nodeport config --- charts/wyoming-piper/templates/service.yaml | 1 + charts/wyoming-piper/values.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/charts/wyoming-piper/templates/service.yaml b/charts/wyoming-piper/templates/service.yaml index a8846d9..f356c05 100644 --- a/charts/wyoming-piper/templates/service.yaml +++ b/charts/wyoming-piper/templates/service.yaml @@ -11,6 +11,7 @@ spec: - name: wyoming port: {{ .Values.service.wyoming.port }} targetPort: {{ .Values.service.wyoming.targetPort | default "10200" }} + nodePort: {{ .Values.service.wyoming.nodePort | default "10200" }} protocol: TCP selector: {{- include "wyoming-piper.selectorLabels" . | nindent 4 }} diff --git a/charts/wyoming-piper/values.yaml b/charts/wyoming-piper/values.yaml index f710f42..c0d4efe 100644 --- a/charts/wyoming-piper/values.yaml +++ b/charts/wyoming-piper/values.yaml @@ -41,6 +41,7 @@ service: wyoming: port: 10200 targetPort: 10200 + nodePort: 10200 ingress: enabled: false