65 lines
1.1 KiB
YAML
65 lines
1.1 KiB
YAML
# Default values for nzbhydra.
|
|
|
|
image:
|
|
repository: ghcr.io/truecharts/nzbhydra2
|
|
pullPolicy: IfNotPresent
|
|
tag: v3.14.1
|
|
|
|
strategy:
|
|
type: Recreate
|
|
|
|
services:
|
|
main:
|
|
port:
|
|
port: 5076
|
|
|
|
env: {}
|
|
# TZ: UTC
|
|
# PUID: 1001
|
|
# PGID: 1001
|
|
|
|
probes:
|
|
liveness:
|
|
custom: true
|
|
enabled: true
|
|
spec:
|
|
failureThreshold: 5
|
|
httpGet:
|
|
path: /actuator/health/livenessState
|
|
port: http
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 10
|
|
timeoutSeconds: 10
|
|
readiness:
|
|
custom: true
|
|
enabled: true
|
|
spec:
|
|
failureThreshold: 5
|
|
httpGet:
|
|
path: /actuator/health/readinessState
|
|
port: http
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 10
|
|
timeoutSeconds: 10
|
|
startup:
|
|
custom: true
|
|
enabled: true
|
|
spec:
|
|
failureThreshold: 5
|
|
httpGet:
|
|
path: /actuator/health/readinessState
|
|
port: http
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 10
|
|
timeoutSeconds: 10
|
|
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: "/config"
|
|
emptyDir: true
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
storageClass: ""
|