Skip to content

Commit

Permalink
Merge pull request #57 from Gradiant/feature-jitsi
Browse files Browse the repository at this point in the history
Feature jitsi
  • Loading branch information
cgiraldo authored Jul 15, 2022
2 parents 1356931 + 4bf0b49 commit af34fa1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/jitsi/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ maintainers:
- email: [email protected]
name: mmarquez999
name: jitsi
version: 0.0.1
version: 0.0.2
keywords:
- apps
- k8s
Expand Down
3 changes: 3 additions & 0 deletions charts/jitsi/templates/jvb/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ spec:
{{- end }}
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 }}
{{- end }}
protocol: UDP
name: rtp-udp
{{- if .Values.jvb.websockets.enabled }}
Expand Down
10 changes: 7 additions & 3 deletions charts/jitsi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,6 @@ jicofo:
extraEnvs: {}

jvb:
# Change publicIP to the external IP allocated for this LoadBalancer service and redeploy
publicIP: 1.2.3.4
replicaCount: 1
image:
repository: jitsi/jvb
Expand All @@ -136,7 +134,13 @@ jvb:

stunServers: 'meet-jit-si-turnrelay.jitsi.net:443'
useHostPort: false
UDPPort: 30000
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
## 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
service:
enabled:
type: LoadBalancer
Expand Down

0 comments on commit af34fa1

Please sign in to comment.