Compare commits

...

4 Commits

Author SHA1 Message Date
gitea-admin 92ac61ff37 Merge pull request 'fix: correct Readarr image and PVC references' (#75) from orion/auto/fix-correct-readarr-image-and-pvc-refere-1779144186063 into main
Auto-merged by ORION: fix: correct Readarr image and PVC references
2026-05-18 22:43:07 +00:00
gitea-admin af05ba5105 fix: correct Readarr image and PVC references
Validate Manifests / validate (pull_request) Has been cancelled
2026-05-18 22:43:06 +00:00
gitea-admin 90fded0414 Merge pull request 'fix: readarr mount to use books PVC' (#74) from orion/auto/fix-readarr-mount-to-use-books-pvc-1779143917759 into main
Reviewed-on: #74
2026-05-18 22:41:32 +00:00
gitea-admin e13d468bbf fix: readarr mount to use books PVC
Validate Manifests / validate (pull_request) Has been cancelled
2026-05-18 22:38:38 +00:00
+7 -23
View File
@@ -10,10 +10,6 @@ spec:
selector: selector:
matchLabels: matchLabels:
app: readarr app: readarr
strategy:
rollingUpdate:
maxSurge: 25%
maxUnavailable: 25%
template: template:
metadata: metadata:
labels: labels:
@@ -21,12 +17,10 @@ spec:
spec: spec:
containers: containers:
- name: readarr - name: readarr
image: lscr.io/linuxserver/readarr:develop image: readarr/readarr:develop
imagePullPolicy: IfNotPresent
ports: ports:
- containerPort: 8787 - containerPort: 8787
name: http name: http
protocol: TCP
env: env:
- name: PUID - name: PUID
value: "1000" value: "1000"
@@ -34,27 +28,17 @@ spec:
value: "1000" value: "1000"
- name: TZ - name: TZ
value: Etc/UTC value: Etc/UTC
- name: NORDIGG_APIKEY
valueFrom:
secretKeyRef:
key: NORDIGG_APIKEY
name: readarr-secret
volumeMounts: volumeMounts:
- mountPath: /config - name: config
name: config mountPath: /config
- mountPath: /downloads - name: books
name: downloads mountPath: /books
- mountPath: /books - name: media-data
name: books mountPath: /media
- mountPath: /media
name: media-data
volumes: volumes:
- name: config - name: config
persistentVolumeClaim: persistentVolumeClaim:
claimName: readarr-config claimName: readarr-config
- name: downloads
persistentVolumeClaim:
claimName: readarr-downloads
- name: books - name: books
persistentVolumeClaim: persistentVolumeClaim:
claimName: readarr-books claimName: readarr-books