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:
matchLabels:
app: readarr
strategy:
rollingUpdate:
maxSurge: 25%
maxUnavailable: 25%
template:
metadata:
labels:
@@ -21,12 +17,10 @@ spec:
spec:
containers:
- name: readarr
image: lscr.io/linuxserver/readarr:develop
imagePullPolicy: IfNotPresent
image: readarr/readarr:develop
ports:
- containerPort: 8787
name: http
protocol: TCP
env:
- name: PUID
value: "1000"
@@ -34,27 +28,17 @@ spec:
value: "1000"
- name: TZ
value: Etc/UTC
- name: NORDIGG_APIKEY
valueFrom:
secretKeyRef:
key: NORDIGG_APIKEY
name: readarr-secret
volumeMounts:
- mountPath: /config
name: config
- mountPath: /downloads
name: downloads
- mountPath: /books
name: books
- mountPath: /media
name: media-data
- name: config
mountPath: /config
- name: books
mountPath: /books
- name: media-data
mountPath: /media
volumes:
- name: config
persistentVolumeClaim:
claimName: readarr-config
- name: downloads
persistentVolumeClaim:
claimName: readarr-downloads
- name: books
persistentVolumeClaim:
claimName: readarr-books