Switch Plex → Jellyfin, fix gluetun IPv6 VPN issue

This commit is contained in:
Will Anderson
2026-04-11 00:11:41 -05:00
parent e08d7eaa03
commit a1c1c7b0f6
4 changed files with 32 additions and 47 deletions
@@ -23,7 +23,7 @@ spec:
# Ensure /dev/net/tun exists on the node
- name: tun-setup
image: busybox:latest
command: ["sh", "-c", "mkdir -p /dev/net && [ -c /dev/net/tun ] || mknod /dev/net/tun c 10 200 && chmod 666 /dev/net/tun"]
command: ["sh", "-c", "mkdir -p /dev/net && [ -c /dev/net/tun ] || mknod /dev/net/tun c 10 200 && chmod 666 /dev/net/tun && sysctl -w net.ipv6.conf.all.disable_ipv6=1 || true"]
securityContext:
privileged: true
containers: