k3s/services/prowlarr/prowlarr-deployment.yaml

43 lines
969 B
YAML
Raw Normal View History

2026-03-02 20:22:36 -05:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: prowlarr
annotations:
keel.sh/policy: "all"
keel.sh/match-tag: "true"
keel.sh/schedule: "0 3 * * *"
2026-03-02 20:22:36 -05:00
spec:
replicas: 1
selector:
matchLabels:
app: prowlarr
2026-03-02 20:22:36 -05:00
strategy:
type: Recreate
template:
metadata:
labels:
app: prowlarr
2026-03-02 20:22:36 -05:00
spec:
containers:
- env:
- name: PGID
value: "1000"
- name: PUID
value: "1000"
- name: TZ
value: America/New_York
image: lscr.io/linuxserver/prowlarr:latest
name: prowlarr
ports:
- containerPort: 9696
protocol: TCP
2026-04-03 21:52:07 -04:00
name: web-ui
2026-03-02 20:22:36 -05:00
volumeMounts:
- mountPath: /config
name: prowlarr-config
restartPolicy: Always
volumes:
- name: prowlarr-config
2026-06-10 20:51:10 -04:00
persistentVolumeClaim:
claimName: prowlarr-config-pvc