From 4bf0b4944ed770d107a93fb33b296fb8a92a7bd4 Mon Sep 17 00:00:00 2001 From: mmarquez999 Date: Fri, 15 Jul 2022 12:00:06 +0200 Subject: [PATCH] Changed NodePort to nodePort value --- charts/jitsi/templates/jvb/service.yaml | 2 +- charts/jitsi/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/jitsi/templates/jvb/service.yaml b/charts/jitsi/templates/jvb/service.yaml index 09d4fdc35..c35a3db7f 100644 --- a/charts/jitsi/templates/jvb/service.yaml +++ b/charts/jitsi/templates/jvb/service.yaml @@ -17,7 +17,7 @@ spec: ports: - port: {{ default 10000 .Values.jvb.UDPPort }} {{- if or (eq .Values.jvb.service.type "NodePort") (eq .Values.jvb.service.type "LoadBalancer") }} - nodePort: {{ .Values.jvb.NodePort }} + nodePort: {{ .Values.jvb.nodePort }} {{- end }} protocol: UDP name: rtp-udp diff --git a/charts/jitsi/values.yaml b/charts/jitsi/values.yaml index 7c78926c6..043450749 100644 --- a/charts/jitsi/values.yaml +++ b/charts/jitsi/values.yaml @@ -137,7 +137,7 @@ jvb: UDPPort: 10000 ## nodePort used if service type is set to 'LoadBalancer' or 'NodePort'. ## It will be automatically allocated if it is left with default value - NodePort: 0 + nodePort: 0 ## Set publicIP for JVB so it can be reachable by all participants, if needed. ## Change publicIP to the external IP allocated for this LoadBalancer service and redeploy publicIP: nil