Release v1.3.2
⚠️ BREAKING CHANGES ⚠️
This release drops support for customizable Jicofo's XMPP user name (dropped in stable-8218
release of Jitsi Meet) and changes default thresholds for Jibri's liveness probes.
Jicofo XMPP user name is now hardcoded
Many internal parts of Jitsi Meet assume that Jicofo is always available via focus@<...>
JID, so upstream decided to hardcode it to avoid possible problems. The chart follows upstream's decision, so now JICOFO_AUTH_USER
is hardcoded to focus
as well.
Jibri liveness probes are now set to fail faster
Jibri used to have default settings for liveness/readiness probes (that is, delay=0s period=10s failure=3
), which is fine in most cases, but might be too slow when using the newly-introduced single-use mode. To account for this new feature, these probes are now set to execute every 5 seconds and fail after 2 unsuccessful tries, reducing possible Jibri downtime to ~10 seconds.
If you want to restore the previous behaviour, add this to your values.yaml
:
jibri:
livenessProbe:
# Recommended to leave this at default (5s),
# but...
initialDelaySeconds: 0
periodSeconds: 10
failureThreshold: 3
readinessProbe:
initialDelaySeconds: 0
periodSeconds: 10
failureThreshold: 3
What's changed
- Bump Jitsi Meet images to
stable-8218
; - Add support for Jibri's single-use mode;
- Drop support for deprecated Jicofo XMPP user setting;
Full Changelog: v1.3.1...v1.3.2