Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
Signed-off-by: David Young <davidy@funkypenguin.co.nz>
  • Loading branch information
funkypenguin committed May 20, 2024
2 parents f5cda82 + 019d73a commit 428e19a
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/other/myprecious/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.0.32761-pre-01
version: 1.0.32761-pre-02

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
40 changes: 35 additions & 5 deletions charts/other/myprecious/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5162,6 +5162,36 @@ jellyfin:
initContainers:
bootstrap: *bootstrap
update-dns: *update_dns_on_init
setup:
image: *tooling_image
command:
- /bin/bash
- -c
- |
set -x
set -e
# Remove /config/transcode if it exists (could be old transcode data in there)
if [[ -f /config/transcode ]]; then
rm -rf /config/transcode
fi
# Make symlinks for various variations of transcode paths to /transcode
ln -sf /transcode /config/transcodes
ln -sf /transcode /config/transcode
# Also keep cache in /transcode
mkdir -p /transcode/cache
rm -rf /config/cache
ln -sf /transcode/cache /config/
volumeMounts:
- mountPath: /config
name: config
- mountPath: /transcode
name: transcode
securityContext: *default_securitycontext
resources: *default_resources
ingress:
main:
enabled: false
Expand Down Expand Up @@ -5279,11 +5309,11 @@ emby:
volumeSpec:
persistentVolumeClaim:
claimName: config-emby-ssd
# transcode-temp:
# enabled: true
# type: emptyDir
# mountPath: /config/transcoding-temp
# sizeLimit: 50Gi # Don't allow > 10GB in transcoding files
transcode-temp:
enabled: true
type: emptyDir
mountPath: /config/transcoding-temp
sizeLimit: 50Gi # Don't allow > 10GB in transcoding files
transcode: # in case users use /tmp
enabled: true
type: custom
Expand Down

0 comments on commit 428e19a

Please sign in to comment.