blob: eca21e35368e8df6808931c6ac9366fa7e3090bd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
|
initContainers:
- name: prepare-config
image: busybox
workingDir: /config
command:
- sh
- -c
- mkdir -p jicofo prosody web jvb
volumeMounts:
- name: config
mountPath: /config
containers:
- name: jicofo
image: "jitsi/jicofo:{{ jitsi_meet_version }}"
resources:
requests:
memory: "1Gi"
limits:
memory: "4Gi"
volumeMounts:
- name: config
subPath: jicofo
mountPath: /config
env:
{% if jitsi_meet_auth is defined %}
- name: ENABLE_AUTH
value: "1"
- name: AUTH_TYPE
value: "internal"
{% endif %}
- name: XMPP_SERVER
value: 127.0.0.1
- name: XMPP_DOMAIN
value: meet.jitsi
- name: XMPP_AUTH_DOMAIN
value: auth.meet.jitsi
- name: XMPP_MUC_DOMAIN
value: muc.meet.jitsi
- name: XMPP_INTERNAL_MUC_DOMAIN
value: internal-muc.meet.jitsi
{% if 'jicofo_component_secret' in jitsi_meet_secrets %}
- name: JICOFO_COMPONENT_SECRET
value: "{{ jitsi_meet_secrets.jicofo_component_secret }}"
{% endif %}
- name: JICOFO_AUTH_USER
value: focus
- name: JICOFO_AUTH_PASSWORD
value: "{{ jitsi_meet_secrets.jicofo_auth_password }}"
- name: JVB_BREWERY_MUC
value: jvbbrewery
- name: TZ
value: {{ jitsi_meet_timezone }}
- name: prosody
image: "jitsi/prosody:{{ jitsi_meet_version }}"
resources:
requests:
memory: "128Mi"
limits:
memory: "512Mi"
volumeMounts:
- name: scripts
subPath: prosody/cont-init.sh
mountPath: /etc/cont-init.d/99-k8s
readOnly: yes
{% if jitsi_meet_streamui is defined %}
- name: scripts
subPath: prosody/streamui.sh
mountPath: /etc/cont-init.d/90-streamui
readOnly: yes
{% endif %}
- name: config
subPath: prosody
mountPath: /config
env:
- name: PUBLIC_URL
value: "https://{{ jitsi_meet_hostname }}"
- name: ENABLE_LOBBY
value: "1"
{% if jitsi_meet_auth is defined %}
- name: ENABLE_AUTH
value: "1"
- name: AUTH_TYPE
value: "internal"
- name: ENABLE_GUESTS
value: "{{ (jitsi_meet_auth.enable_guests | default(false)) | ternary('1', '0') }}"
{% endif %}
- name: XMPP_DOMAIN
value: meet.jitsi
- name: XMPP_AUTH_DOMAIN
value: auth.meet.jitsi
{% if jitsi_meet_auth is defined and (jitsi_meet_auth.enable_guests | default(false)) %}
- name: XMPP_GUEST_DOMAIN
value: guest.meet.jitsi
{% endif %}
- name: XMPP_MUC_DOMAIN
value: muc.meet.jitsi
- name: XMPP_INTERNAL_MUC_DOMAIN
value: internal-muc.meet.jitsi
{% if 'jicofo_component_secret' in jitsi_meet_secrets %}
- name: JICOFO_COMPONENT_SECRET
value: "{{ jitsi_meet_secrets.jicofo_component_secret }}"
{% endif %}
- name: JICOFO_AUTH_USER
value: focus
- name: JICOFO_AUTH_PASSWORD
value: "{{ jitsi_meet_secrets.jicofo_auth_password }}"
- name: JVB_AUTH_USER
value: jvb
- name: JVB_AUTH_PASSWORD
value: "{{ jitsi_meet_secrets.jvb_auth_password }}"
- name: TZ
value: {{ jitsi_meet_timezone }}
- name: web
image: "jitsi/web:{{ jitsi_meet_version }}"
resources:
requests:
memory: "256Mi"
limits:
memory: "1Gi"
ports:
- protocol: TCP
containerPort: 80
hostPort: {{ jitsi_meet_http_port }}
hostIP: 127.0.0.1
volumeMounts:
{% if jitsi_meet_streamui is defined %}
- name: scripts
subPath: web/streamui.sh
mountPath: /etc/cont-init.d/90-streamui
readOnly: yes
{% endif %}
- name: config
subPath: web
mountPath: /config
env:
- name: PUBLIC_URL
value: "https://{{ jitsi_meet_hostname }}"
- name: DISABLE_HTTPS
value: "1"
- name: ENABLE_HTTP_REDIRECT
value: "0"
- name: ENABLE_P2P
value: "{{ jitsi_meet_p2p_enable | ternary('true', 'false') }}"
{% if jitsi_meet_require_display_name is defined %}
- name: ENABLE_REQUIRE_DISPLAY_NAME
value: "{{ jitsi_meet_require_display_name | ternary('true', 'false') }}"
{% endif %}
{% if jitsi_meet_auth is defined %}
- name: ENABLE_AUTH
value: "1"
- name: ENABLE_GUESTS
value: "{{ (jitsi_meet_auth.enable_guests | default(false)) | ternary('1', '0') }}"
{% endif %}
- name: XMPP_DOMAIN
value: meet.jitsi
- name: XMPP_AUTH_DOMAIN
value: auth.meet.jitsi
{% if jitsi_meet_auth is defined and (jitsi_meet_auth.enable_guests | default(false)) %}
- name: XMPP_GUEST_DOMAIN
value: guest.meet.jitsi
{% endif %}
- name: XMPP_MUC_DOMAIN
value: muc.meet.jitsi
- name: XMPP_BOSH_URL_BASE
value: http://127.0.0.1:5280
- name: JICOFO_AUTH_USER
value: focus
- name: TZ
value: {{ jitsi_meet_timezone }}
- name: jvb
image: "jitsi/jvb:{{ jitsi_meet_version }}"
resources:
requests:
memory: "1Gi"
limits:
memory: "4Gi"
ports:
- protocol: UDP
containerPort: {{ jitsi_meet_jvb_port }}
hostPort: {{ jitsi_meet_jvb_port }}
hostIP: "{{ external_ip | default(ansible_default_ipv4.address) }}"
volumeMounts:
- name: config
subPath: jvb
mountPath: /config
env:
- name: XMPP_SERVER
value: 127.0.0.1
- name: XMPP_AUTH_DOMAIN
value: auth.meet.jitsi
- name: XMPP_INTERNAL_MUC_DOMAIN
value: internal-muc.meet.jitsi
- name: JVB_AUTH_USER
value: jvb
- name: JVB_AUTH_PASSWORD
value: "{{ jitsi_meet_secrets.jvb_auth_password }}"
- name: JVB_BREWERY_MUC
value: jvbbrewery
- name: PUBLIC_URL
value: "https://{{ jitsi_meet_hostname }}"
- name: JVB_PORT
value: "{{ jitsi_meet_jvb_port }}"
- name: JVB_TCP_HARVESTER_DISABLED
value: "true"
- name: DOCKER_HOST_ADDRESS
value: "{{ external_ip | default(ansible_default_ipv4.address) }}"
- name: TZ
value: {{ jitsi_meet_timezone }}
{% if jitsi_meet_streamui is defined %}
- name: stream-ui
image: "get.more.failed.systems/public_projects/jitsi-stream-ui:{{ jitsi_meet_streamui.image_tag }}"
resources:
requests:
memory: "256Mi"
limits:
memory: "1Gi"
ports:
- protocol: TCP
containerPort: 3000
hostPort: {{ jitsi_meet_streamui.http_port }}
hostIP: 127.0.0.1
env:
- name: HTTP_PATH
value: "/stream-ui"
- name: JITSI_XMPP_ID
value: "display@stream-ui.meet.jitsi"
- name: JITSI_XMPP_PASSWORD
value: "{{ jitsi_meet_secrets.streamuidisplay_auth_password }}"
{% if 'default_control_room' in jitsi_meet_streamui %}
- name: DEFAULT_CONTROL_ROOM
value: "{{ jitsi_meet_streamui.default_control_room }}"
{% endif %}
{% endif %}
volumes:
- name: scripts
hostPath:
path: "{{ jitsi_meet_base_path }}/{{ jitsi_meet_inst_name }}/scripts"
- name: config
emptyDir:
medium: Memory
|