apiVersion: apps/v1 kind: Deployment metadata: annotations: keel.sh/policy: minor keel.sh/trigger: poll keel.sh/pollSchedule: "@every 6h" labels: io.kompose.service: readarr name: readarr spec: replicas: 1 selector: matchLabels: io.kompose.service: readarr strategy: type: Recreate template: metadata: labels: io.kompose.service: readarr spec: containers: - env: - name: PGID value: "1000" - name: PUID value: "1000" - name: TZ value: Asia/Kuwait image: lscr.io/linuxserver/readarr:nightly name: readarr ports: - containerPort: 8787 protocol: TCP volumeMounts: - mountPath: /config name: ssd subPath: configs/jellyarr/readarr_config - mountPath: /data/ebooks name: ssd subPath: books/ebooks - 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