70 lines
1.5 KiB
YAML
70 lines
1.5 KiB
YAML
image:
|
|
repository: meisnate12/plex-meta-manager
|
|
tag: v1.20.0@sha256:5bcf400823bf478ab87dff46f43e8a4995713c69d991cf1867acab2d0e528113
|
|
pullPolicy: IfNotPresent
|
|
|
|
securityContext:
|
|
container:
|
|
runAsNonRoot: false
|
|
readOnlyRootFilesystem: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
service:
|
|
main:
|
|
enabled: false
|
|
ports:
|
|
main:
|
|
enabled: false
|
|
|
|
pmm:
|
|
run: false
|
|
no_countdown: true
|
|
time:
|
|
- "00:00"
|
|
# plex_url: ""
|
|
# plex_token: ""
|
|
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
initContainers:
|
|
create-init-config-file:
|
|
enabled: true
|
|
type: init
|
|
imageSelector: "image"
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
args:
|
|
- |
|
|
echo "Creating config.yml file..."
|
|
if [ -f /config/config.yml ]; then
|
|
echo "Config file exists! Skipping..."
|
|
else
|
|
echo "Config file is missing, getting a new one!"
|
|
curl -fLvo /config/config.yml https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/master/config/config.yml.template || (echo "Downloading config file, FAILED..." && exit 1)
|
|
fi
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
enabled: false
|
|
readiness:
|
|
enabled: false
|
|
startup:
|
|
enabled: false
|
|
envFrom:
|
|
- secretRef:
|
|
name: "secret"
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: /config
|
|
targetSelectAll: true
|
|
|
|
portal:
|
|
open:
|
|
enabled: false
|