change path
All checks were successful
lint-test-helm / lint-helm (push) Successful in 20s
render-manifests-push / render-manifests-push (push) Successful in 27s
renovate / renovate (push) Successful in 1m33s

This commit is contained in:
2026-01-16 22:28:05 -06:00
parent 755b5995ed
commit 37553ccc8a

View File

@@ -5,6 +5,23 @@ yubal-playlist:
replicas: 1 replicas: 1
strategy: Recreate strategy: Recreate
revisionHistoryLimit: 3 revisionHistoryLimit: 3
initContainers:
init-copy-config:
image:
repository: busybox
tag: 1.37.0
pullPolicy: IfNotPresent
command:
- /bin/sh
- -ec
- |
if [ ! -f "/app/ytdlp/cookies.txt" ]; then
echo ">> Coping files ..."
ls /app/ytdlp
cp -fv /app/ytdlp/cookies-ro.txt /app/ytdlp/cookies.txt
echo ">> Files in ytdlp:"
ls /app/ytdlp
fi
containers: containers:
main: main:
image: image:
@@ -146,7 +163,7 @@ yubal-playlist:
advancedMounts: advancedMounts:
main: main:
main: main:
- path: /app/ytdlp/cookies.txt - path: /app/ytdlp/cookies-ro.txt
readOnly: true readOnly: true
mountPropagation: None mountPropagation: None
subPath: cookies.txt subPath: cookies.txt