58 lines
1.3 KiB
YAML
58 lines
1.3 KiB
YAML
image:
|
|
repository: tccr.io/truecharts/qbitrr
|
|
pullPolicy: IfNotPresent
|
|
tag: v3.7.3@sha256:3cf9a566ce5d027a8030bf2374a2e421ed498782397a1354fe326cd8e09ee003
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
|
|
service:
|
|
main:
|
|
enabled: false
|
|
ports:
|
|
main:
|
|
enabled: false
|
|
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
lifecycle:
|
|
postStart:
|
|
type: exec
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
- |
|
|
echo "Creating config.toml file..."
|
|
if [ -f /config/config.toml ]; then
|
|
echo "Config file exists! Skipping..."
|
|
else
|
|
if mv -n /config/.config/config.rename_me.toml /config/config.toml; then
|
|
echo "Config file copied successfully!"
|
|
else
|
|
echo "Copying config file failed."
|
|
exit 1
|
|
fi
|
|
fi
|
|
probes:
|
|
liveness:
|
|
enabled: false
|
|
readiness:
|
|
enabled: false
|
|
startup:
|
|
enabled: false
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: /config
|
|
downloads:
|
|
enabled: true
|
|
mountPath: /completed_downloads
|
|
|
|
portal:
|
|
open:
|
|
enabled: false
|