Compare commits

..

13 Commits

Author SHA1 Message Date
gitea-admin c87944b3c3 fix: media-data PVC access mode and apps namespace
Validate Manifests / validate (pull_request) Has been cancelled
2026-05-18 23:03:40 +00:00
gitea-admin dd00e71632 fix: media-data PVC access mode and apps namespace 2026-05-18 23:03:40 +00:00
gitea-admin 0e225e1278 fix: media-data PVC access mode and apps namespace 2026-05-18 23:03:39 +00:00
gitea-admin da8a88b949 fix: media-data PVC access mode and apps namespace 2026-05-18 23:03:39 +00:00
gitea-admin 0a53d8e0c8 fix: media-data PVC access mode and apps namespace 2026-05-18 23:03:39 +00:00
gitea-admin 1fe9a17874 fix: media-data PVC access mode and apps namespace 2026-05-18 23:03:38 +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
7 changed files with 44 additions and 35 deletions
+1 -1
View File
@@ -26,4 +26,4 @@ spec:
memory: 128Mi
limits:
cpu: 500m
memory: 512Mi
memory: 512Mi
+1 -1
View File
@@ -21,4 +21,4 @@ spec:
service:
name: excalidraw
port:
number: 80
number: 80
+1 -1
View File
@@ -10,4 +10,4 @@ spec:
- protocol: TCP
port: 80
targetPort: 80
type: ClusterIP
type: ClusterIP
+6
View File
@@ -0,0 +1,6 @@
apiVersion: v1
kind: Namespace
metadata:
name: apps
labels:
kubernetes.io/metadata.name: apps
+18 -25
View File
@@ -11,9 +11,7 @@ spec:
matchLabels:
app: readarr
strategy:
rollingUpdate:
maxSurge: 25%
maxUnavailable: 25%
type: Recreate
template:
metadata:
labels:
@@ -21,12 +19,10 @@ spec:
spec:
containers:
- name: readarr
image: lscr.io/linuxserver/readarr:develop
imagePullPolicy: IfNotPresent
image: lscr.io/linuxserver/readarr:latest
ports:
- containerPort: 8787
name: http
protocol: TCP
env:
- name: PUID
value: "1000"
@@ -34,30 +30,27 @@ 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: media-data
mountPath: /media
- name: books
mountPath: /books
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 500m
memory: 512Mi
volumes:
- name: config
persistentVolumeClaim:
claimName: readarr-config
- name: downloads
persistentVolumeClaim:
claimName: readarr-downloads
- name: books
persistentVolumeClaim:
claimName: readarr-books
- name: media-data
persistentVolumeClaim:
claimName: media-data
- name: books
persistentVolumeClaim:
claimName: readarr-books
+17 -7
View File
@@ -10,6 +10,8 @@ spec:
selector:
matchLabels:
app: sonarr
strategy:
type: Recreate
template:
metadata:
labels:
@@ -17,30 +19,38 @@ spec:
spec:
containers:
- name: sonarr
image: lscr.io/linuxserver/sonarr:develop
image: lscr.io/linuxserver/sonarr:latest
ports:
- containerPort: 8989
name: http
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: TZ
value: UTC
value: Etc/UTC
volumeMounts:
- name: config
mountPath: /config
- name: tv
mountPath: /tv
- name: downloads
mountPath: /downloads
- name: media-data
mountPath: /media
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 500m
memory: 512Mi
volumes:
- name: config
persistentVolumeClaim:
claimName: sonarr-config
- name: tv
persistentVolumeClaim:
claimName: media-data
- name: downloads
persistentVolumeClaim:
claimName: sonarr-downloads
- name: media-data
persistentVolumeClaim:
claimName: media-data