54 lines
1.3 KiB
YAML
54 lines
1.3 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
annotations:
|
|
keel.sh/policy: minor
|
|
keel.sh/trigger: poll
|
|
keel.sh/pollSchedule: "@every 6h"
|
|
labels:
|
|
io.kompose.service: speakarr
|
|
name: speakarr
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
io.kompose.service: speakarr
|
|
strategy:
|
|
type: Recreate
|
|
template:
|
|
metadata:
|
|
labels:
|
|
io.kompose.service: speakarr
|
|
spec:
|
|
containers:
|
|
- env:
|
|
- name: PGID
|
|
value: "1000"
|
|
- name: PUID
|
|
value: "1000"
|
|
- name: TZ
|
|
value: Asia/Kuwait
|
|
image: lscr.io/linuxserver/readarr:nightly
|
|
name: speakarr
|
|
ports:
|
|
- containerPort: 8787
|
|
protocol: TCP
|
|
volumeMounts:
|
|
- mountPath: /config
|
|
name: ssd
|
|
subPath: configs/jellyarr/speakarr_config
|
|
- mountPath: /data/audiobooks
|
|
name: ssd
|
|
subPath: books/audiobooks
|
|
- mountPath: /downloads/complete
|
|
name: hdd
|
|
subPath: transmission/downloads/complete
|
|
restartPolicy: Always
|
|
volumes:
|
|
- name: ssd
|
|
persistentVolumeClaim:
|
|
claimName: nfs-ssd-pvc
|
|
- name: hdd
|
|
persistentVolumeClaim:
|
|
claimName: nfs-hdd-pvc
|
|
|