40 lines
760 B
YAML
40 lines
760 B
YAML
image:
|
|
repository: lscr.io/linuxserver/prowlarr
|
|
tag: "latest@sha256:4f2a6d597845b2f3e19284b1d982b3e0b4bd7c22472c2979c956aa198b83f472"
|
|
pullPolicy: Always
|
|
|
|
env:
|
|
- name: TZ
|
|
value: "Europe/Amsterdam"
|
|
|
|
volumes:
|
|
- name: "plex-data"
|
|
persistentVolumeClaim:
|
|
claimName: "plex-data" # PersistentVolumeClaim created earlier
|
|
|
|
volumeMounts:
|
|
- name: "plex-data"
|
|
mountPath: "/config"
|
|
subPath: "configs/prowlarr" # Path /mnt/ssd/media/configs/prowlarr where prowlarr writes the configuration
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 9696
|
|
|
|
resources:
|
|
requests:
|
|
memory: "500Mi"
|
|
cpu: "500m"
|
|
ephemeral-storage: "50Mi"
|
|
limits:
|
|
memory: "2Gi"
|
|
cpu: "2"
|
|
ephemeral-storage: "1Gi"
|
|
|
|
|
|
nodeSelector: {}
|
|
|
|
tolerations: []
|
|
|
|
affinity: {}
|