2021-04-13 19:43:27 +00:00
|
|
|
# Default values for Radarr.
|
2021-03-06 20:32:31 +00:00
|
|
|
|
|
|
|
image:
|
2021-05-30 21:22:13 +00:00
|
|
|
repository: ghcr.io/k8s-at-home/radarr
|
2021-03-06 20:32:31 +00:00
|
|
|
pullPolicy: IfNotPresent
|
2021-09-11 11:04:47 +00:00
|
|
|
tag: v3.2.2.5080@sha256:b03562bacb117ab654dca5c6bcc61d013a40fe54e9fa1f563cd1c72899f77137
|
2021-03-08 13:32:58 +00:00
|
|
|
|
2021-09-10 18:10:04 +00:00
|
|
|
securityContext:
|
|
|
|
readOnlyRootFilesystem: false
|
2021-04-13 19:43:27 +00:00
|
|
|
|
2021-05-19 13:12:45 +00:00
|
|
|
service:
|
2021-04-13 19:43:27 +00:00
|
|
|
main:
|
2021-05-19 13:12:45 +00:00
|
|
|
ports:
|
|
|
|
main:
|
|
|
|
port: 7878
|
2021-04-13 19:43:27 +00:00
|
|
|
|
|
|
|
env: {}
|
|
|
|
# TZ: UTC
|
|
|
|
# PUID: 1001
|
2021-10-04 10:31:56 +00:00
|
|
|
|
2021-04-13 19:43:27 +00:00
|
|
|
|
2021-03-06 20:32:31 +00:00
|
|
|
probes:
|
|
|
|
liveness:
|
|
|
|
enabled: true
|
|
|
|
## Set this to true if you wish to specify your own livenessProbe
|
|
|
|
custom: true
|
|
|
|
## The spec field contains the values for the default livenessProbe.
|
|
|
|
## If you selected custom: true, this field holds the definition of the livenessProbe.
|
|
|
|
spec:
|
|
|
|
exec:
|
|
|
|
command:
|
|
|
|
- /usr/bin/env
|
|
|
|
- bash
|
|
|
|
- -c
|
|
|
|
- curl --fail localhost:7878/api/v3/system/status?apiKey=`IFS=\> && while
|
|
|
|
read -d \< E C; do if [[ $E = "ApiKey" ]]; then echo $C; fi; done < /config/config.xml`
|
|
|
|
failureThreshold: 5
|
|
|
|
initialDelaySeconds: 60
|
|
|
|
periodSeconds: 10
|
|
|
|
successThreshold: 1
|
|
|
|
timeoutSeconds: 10
|
|
|
|
|
2021-04-13 19:43:27 +00:00
|
|
|
persistence:
|
|
|
|
config:
|
|
|
|
enabled: true
|
|
|
|
mountPath: "/config"
|
2021-08-29 12:02:17 +00:00
|
|
|
type: pvc
|
|
|
|
accessMode: ReadWriteOnce
|
|
|
|
size: "100Gi"
|