Skip to content

Commit

Permalink
Changed NodePort to nodePort value
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarquez999 committed Jul 15, 2022
1 parent c3868ec commit 4bf0b49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/jitsi/templates/jvb/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion charts/jitsi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4bf0b49

Please sign in to comment.