2c9ad1360d
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/alpine/socat | digest | `b991911` → `188fe0a` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC9qZWxseWZpbiIsImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
105 lines
3.2 KiB
YAML
105 lines
3.2 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: oci.trueforge.org/containerforge/jellyfin
|
|
pullPolicy: IfNotPresent
|
|
tag: 10.11.11@sha256:7f5325bd23b7445a8fda17b6d2d24033e3935536789f682aed63698b7b3a97c6
|
|
broadcastProxyImage:
|
|
repository: docker.io/alpine/socat
|
|
pullPolicy: IfNotPresent
|
|
tag: 1.8.1.3@sha256:188fe0a22182f81c16def9d1137930121eaa3023f427164e32c0d2f118f79dd6
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 8096
|
|
targetPort: 8096
|
|
autodiscovery:
|
|
enabled: true
|
|
ports:
|
|
autodiscovery:
|
|
enabled: true
|
|
protocol: udp
|
|
port: 7359
|
|
targetPort: 7359
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: "/config"
|
|
data:
|
|
enabled: true
|
|
mountPath: "/data"
|
|
logs:
|
|
enabled: true
|
|
mountPath: "/logs"
|
|
type: "emptyDir"
|
|
cache:
|
|
enabled: true
|
|
mountPath: "/cache"
|
|
type: "emptyDir"
|
|
transcode:
|
|
enabled: true
|
|
mountPath: "/cache/transcodes"
|
|
type: "emptyDir"
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
JELLYFIN_DATA_DIR: /data
|
|
JELLYFIN_CONFIG_DIR: /config
|
|
JELLYFIN_LOG_DIR: /logs
|
|
JELLYFIN_CACHE_DIR: /cache
|
|
JELLYFIN_PublishedServerUrl: "{{ $.Values.chartContext.appUrl }}"
|
|
broadcastproxy:
|
|
enabled: false
|
|
type: DaemonSet
|
|
podSpec:
|
|
hostNetwork: true
|
|
# Proxy doesn't seem to respect the TERM signal, so by default
|
|
# this ends up just hanging until the default grace period ends.
|
|
# This is unnecesary since this workload only proxies autodiscovery
|
|
# messages.
|
|
terminationGracePeriodSeconds: 3
|
|
containers:
|
|
broadcastproxy:
|
|
enabled: true
|
|
primary: true
|
|
imageSelector: broadcastProxyImage
|
|
securityContext:
|
|
readOnlyRootFilesystem: true
|
|
command: ["/bin/sh"]
|
|
# Quite a lot going on here:
|
|
# - Resolve Jellyfin's autodiscovery service IP from its FQDN via getent hosts
|
|
# - Export the IP to `$TARGET_IP`
|
|
# - Check `$TARGET_IP` is not empty (so we can crash if it is - will help to detect templating errors)
|
|
# - Touch `/tmp/healty` to use with the readiness, liveness and startup probes
|
|
# - Start socat in proxy mode
|
|
# - On exit remove `/tmp/healthy`
|
|
args:
|
|
- "-c"
|
|
- 'export TARGET_IP=$(getent hosts ''{{ printf "%v-autodiscovery" (include "tc.v1.common.lib.chart.names.fullname" $) }}'' | awk ''{ print $1 }'') && [[ ! -z $TARGET_IP ]] && touch /tmp/healthy && socat UDP4-LISTEN:7359,fork,reuseaddr,rcvbuf=8096 UDP4-SENDTO:${TARGET_IP}:7359,rcvbuf=8096 ; rm -rf /tmp/healthy'
|
|
probes:
|
|
readiness:
|
|
enabled: true
|
|
type: exec
|
|
command:
|
|
- cat
|
|
- /tmp/healthy
|
|
liveness:
|
|
enabled: true
|
|
type: exec
|
|
command:
|
|
- cat
|
|
- /tmp/healthy
|
|
startup:
|
|
enabled: true
|
|
type: exec
|
|
command:
|
|
- cat
|
|
- /tmp/healthy
|
|
# -- enable Jellyfin autodiscovery on LAN
|
|
autodiscovery:
|
|
enabled: false
|
|
updated: true
|