Compare commits

...

10 Commits

Author SHA1 Message Date
gitea-admin 29d31470ab fix: update Readarr image from linuxserver to official readarr
Validate Manifests / validate (pull_request) Has been cancelled
2026-05-18 23:02:24 +00:00
gitea-admin f8318860c8 Merge pull request 'fix: use stable image tags for readarr and sonarr' (#76) from orion/auto/fix-use-stable-image-tags-for-readarr-an-1779144281657 into main
Auto-merged by ORION: fix: use stable image tags for readarr and sonarr
2026-05-18 22:44:42 +00:00
gitea-admin 45f6a49863 fix: use stable image tags for readarr and sonarr
Validate Manifests / validate (pull_request) Has been cancelled
2026-05-18 22:44:42 +00:00
gitea-admin 6a88b2d6dd fix: use stable image tags for readarr and sonarr 2026-05-18 22:44:41 +00:00
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
gitea-admin 6e4c3d75ad Merge pull request 'fix: use readarr:latest instead of readarr:develop' (#73) from orion/auto/fix-use-readarr-latest-instead-of-readar-1779143880929 into main
Auto-merged by ORION: fix: use readarr:latest instead of readarr:develop
2026-05-18 22:38:01 +00:00
gitea-admin f7141b5d49 fix: use readarr:latest instead of readarr:develop
Validate Manifests / validate (pull_request) Has been cancelled
2026-05-18 22:38:01 +00:00
2 changed files with 32 additions and 23 deletions
+15 -16
View File
@@ -17,10 +17,12 @@ spec:
spec: spec:
containers: containers:
- name: readarr - name: readarr
image: readarr/readarr:develop image: ghcr.io/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"
@@ -28,30 +30,27 @@ spec:
value: "1000" value: "1000"
- name: TZ - name: TZ
value: Etc/UTC value: Etc/UTC
- name: NORDIGG_APIKEY resources:
valueFrom: requests:
secretKeyRef: cpu: 100m
name: readarr-secret memory: 256Mi
key: NORDIGG_APIKEY limits:
cpu: 500m
memory: 512Mi
volumeMounts: volumeMounts:
- name: config - name: config
mountPath: /config mountPath: /config
- name: downloads
mountPath: /downloads
- name: books
mountPath: /books
- name: media-data - name: media-data
mountPath: /media mountPath: /media
- name: books
mountPath: /books
volumes: volumes:
- name: config - name: config
persistentVolumeClaim: persistentVolumeClaim:
claimName: readarr-config claimName: readarr-config
- name: downloads
persistentVolumeClaim:
claimName: readarr-downloads
- name: books
persistentVolumeClaim:
claimName: readarr-books
- name: media-data - name: media-data
persistentVolumeClaim: persistentVolumeClaim:
claimName: media-data claimName: media-data
- name: books
persistentVolumeClaim:
claimName: readarr-books
+17 -7
View File
@@ -10,6 +10,8 @@ spec:
selector: selector:
matchLabels: matchLabels:
app: sonarr app: sonarr
strategy:
type: Recreate
template: template:
metadata: metadata:
labels: labels:
@@ -17,30 +19,38 @@ spec:
spec: spec:
containers: containers:
- name: sonarr - name: sonarr
image: lscr.io/linuxserver/sonarr:develop image: lscr.io/linuxserver/sonarr:latest
ports: ports:
- containerPort: 8989 - containerPort: 8989
name: http
env: env:
- name: PUID - name: PUID
value: "1000" value: "1000"
- name: PGID - name: PGID
value: "1000" value: "1000"
- name: TZ - name: TZ
value: UTC value: Etc/UTC
volumeMounts: volumeMounts:
- name: config - name: config
mountPath: /config mountPath: /config
- name: tv
mountPath: /tv
- name: downloads - name: downloads
mountPath: /downloads mountPath: /downloads
- name: media-data
mountPath: /media
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 500m
memory: 512Mi
volumes: volumes:
- name: config - name: config
persistentVolumeClaim: persistentVolumeClaim:
claimName: sonarr-config claimName: sonarr-config
- name: tv
persistentVolumeClaim:
claimName: media-data
- name: downloads - name: downloads
persistentVolumeClaim: persistentVolumeClaim:
claimName: sonarr-downloads claimName: sonarr-downloads
- name: media-data
persistentVolumeClaim:
claimName: media-data