This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/guillevc/yubal](https://github.com/guillevc/yubal) | major | `0.4.0` → `4.0.0` | | [guillevc/yubal](https://github.com/guillevc/yubal) | major | `v0.4.0` → `v4.0.0` | --- ### Release Notes <details> <summary>guillevc/yubal (ghcr.io/guillevc/yubal)</summary> ### [`v4.0.0`](https://github.com/guillevc/yubal/releases/tag/v4.0.0): 🕐 v0.4.0 — Playlist sync [Compare Source](https://github.com/guillevc/yubal/compare/v0.4.0...v4.0.0) This release introduces **scheduled playlist sync** — subscribe to playlists and let yubal keep them updated automatically on a cron schedule. ##### ✨ What's New - **Playlist subscriptions** — Register playlists to sync periodically with configurable track limits ([#​33](https://github.com/guillevc/yubal/issues/33)) - **Cron-based scheduler** — Set your preferred sync schedule (e.g., `0 3 * * *` for daily at 3 AM) - **Unicode filename support** — File and folder names now preserve special characters (e.g., `Björk` instead of `Bjork`) ([#​44](https://github.com/guillevc/yubal/issues/44)) ##### 🔧 Improvements - **Format selection optimization** — yt-dlp now prefers the configured codec when selecting source streams, avoiding unnecessary transcoding when the source is already in the desired format ([#​48](https://github.com/guillevc/yubal/issues/48) by [@​ergosteur](https://github.com/ergosteur) 🚀 ) - **Update yt-dlp to latest version** — Fixes YouTube extraction failures caused by recent player JS changes ([yt-dlp/yt-dlp#15818](https://github.com/yt-dlp/yt-dlp/pull/15818)) ##### 🐛 Bug Fixes - **Cookie authentication** — Fixed failures with large or space-containing `cookies.txt` files, and improved validation with clearer error logging ([#​30](https://github.com/guillevc/yubal/issues/30), [#​47](https://github.com/guillevc/yubal/issues/47)) ##### ⚠️ Heads Up File and folder names now preserve unicode characters instead of transliterating them to ASCII. For example: ``` Before: data/Bjork/1997 - Homogenic/01 - Hunter.opus After: data/Björk/1997 - Homogenic/01 - Hunter.opus ``` If you have existing downloads for artists with non-ASCII names, re-downloading or syncing will create new folders alongside the old ones. Check your library and merge any duplicates after upgrading. *** **Full Changelog**: <https://github.com/guillevc/yubal/compare/v0.3.1...v4.0.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4zLjYiLCJ1cGRhdGVkSW5WZXIiOiI0My4zLjYiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImltYWdlIl19--> Reviewed-on: https://gitea.alexlebens.dev/alexlebens/infrastructure/pulls/3794 Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net> Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
146 lines
3.9 KiB
YAML
146 lines
3.9 KiB
YAML
yubal:
|
|
controllers:
|
|
main:
|
|
type: deployment
|
|
replicas: 1
|
|
strategy: Recreate
|
|
revisionHistoryLimit: 3
|
|
containers:
|
|
main:
|
|
image:
|
|
repository: ghcr.io/guillevc/yubal
|
|
tag: 4.0.0
|
|
pullPolicy: IfNotPresent
|
|
env:
|
|
- name: YUBAL_TZ
|
|
value: America/Chicago
|
|
- name: YUBAL_HOST
|
|
value: 0.0.0.0
|
|
- name: YUBAL_PORT
|
|
value: 8080
|
|
- name: YUBAL_LOG_LEVEL
|
|
value: DEBUG
|
|
resources:
|
|
requests:
|
|
cpu: 10m
|
|
memory: 128Mi
|
|
gluetun:
|
|
image:
|
|
repository: ghcr.io/qdm12/gluetun
|
|
tag: v3.41.0@sha256:6b54856716d0de56e5bb00a77029b0adea57284cf5a466f23aad5979257d3045
|
|
pullPolicy: IfNotPresent
|
|
lifecycle:
|
|
postStart:
|
|
exec:
|
|
command: ["/bin/sh", "-c", "(ip rule del table 51820; ip -6 rule del table 51820) || true"]
|
|
env:
|
|
- name: VPN_SERVICE_PROVIDER
|
|
value: protonvpn
|
|
- name: VPN_TYPE
|
|
value: wireguard
|
|
- name: WIREGUARD_PRIVATE_KEY
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: yubal-wireguard-conf
|
|
key: private-key
|
|
- name: UPDATER_PROTONVPN_EMAIL
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: yubal-wireguard-conf
|
|
key: proton-email
|
|
- name: UPDATER_PROTONVPN_PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: yubal-wireguard-conf
|
|
key: proton-password
|
|
- name: FIREWALL_OUTBOUND_SUBNETS
|
|
value: 10.0.0.0/8
|
|
- name: FIREWALL_INPUT_PORTS
|
|
value: 8080
|
|
- name: DNS_UPSTREAM_RESOLVER_TYPE
|
|
value: dot
|
|
securityContext:
|
|
privileged: True
|
|
capabilities:
|
|
add:
|
|
- NET_ADMIN
|
|
- SYS_MODULE
|
|
probes:
|
|
liveness:
|
|
enabled: true
|
|
custom: true
|
|
spec:
|
|
exec:
|
|
command:
|
|
- /gluetun-entrypoint
|
|
- healthcheck
|
|
failureThreshold: 5
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 30
|
|
successThreshold: 1
|
|
timeoutSeconds: 15
|
|
resources:
|
|
limits:
|
|
devic.es/tun: "1"
|
|
requests:
|
|
devic.es/tun: "1"
|
|
cpu: 10m
|
|
memory: 128Mi
|
|
service:
|
|
main:
|
|
controller: main
|
|
ports:
|
|
http:
|
|
port: 80
|
|
targetPort: 8000
|
|
protocol: HTTP
|
|
route:
|
|
main:
|
|
kind: HTTPRoute
|
|
parentRefs:
|
|
- group: gateway.networking.k8s.io
|
|
kind: Gateway
|
|
name: traefik-gateway
|
|
namespace: traefik
|
|
hostnames:
|
|
- yubal.alexlebens.net
|
|
rules:
|
|
- backendRefs:
|
|
- group: ''
|
|
kind: Service
|
|
name: yubal
|
|
port: 80
|
|
weight: 100
|
|
matches:
|
|
- path:
|
|
type: PathPrefix
|
|
value: /
|
|
persistence:
|
|
config:
|
|
storageClass: ceph-block
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
retain: true
|
|
advancedMounts:
|
|
main:
|
|
main:
|
|
- path: /app/config
|
|
readOnly: false
|
|
ytdlp:
|
|
storageClass: ceph-block
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
retain: true
|
|
advancedMounts:
|
|
main:
|
|
main:
|
|
- path: /app/ytdlp
|
|
readOnly: false
|
|
music:
|
|
existingClaim: yubal-nfs-storage
|
|
advancedMounts:
|
|
main:
|
|
main:
|
|
- path: /app/data
|
|
readOnly: false
|