image: repository: tccr.io/truecharts/plex-meta-manager pullPolicy: IfNotPresent tag: 1.17.2@sha256:8a9f0b25cee092a3cdc6edc46bbdd55f80af0c313e454eb49b017a7d54d55c2e securityContext: readOnlyRootFilesystem: false runAsNonRoot: false podSecurityContext: runAsUser: 0 runAsGroup: 0 env: PMM_CONFIG: "/config/config.yml" # PMM_TIME: "" PMM_RUN: true PMM_NO_COUNTDOWN: true service: main: ports: main: port: 10281 targetPort: 10281 protocol: HTTP probes: liveness: enabled: false readiness: enabled: false startup: enabled: false persistence: config: enabled: true mountPath: "/config" initContainers: 1-create-init-config-file: image: "{{ .Values.alpineImage.repository }}:{{ .Values.alpineImage.tag }}" volumeMounts: - name: config mountPath: "/config" 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 portal: enabled: false