fix: use stable image tags for readarr and sonarr

This commit is contained in:
2026-05-18 22:44:41 +00:00
parent 92ac61ff37
commit 6a88b2d6dd
+15 -6
View File
@@ -10,6 +10,8 @@ spec:
selector:
matchLabels:
app: readarr
strategy:
type: Recreate
template:
metadata:
labels:
@@ -17,7 +19,7 @@ spec:
spec:
containers:
- name: readarr
image: readarr/readarr:develop
image: lscr.io/linuxserver/readarr:latest
ports:
- containerPort: 8787
name: http
@@ -31,17 +33,24 @@ spec:
volumeMounts:
- name: config
mountPath: /config
- name: books
mountPath: /books
- 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: books
persistentVolumeClaim:
claimName: readarr-books
- name: media-data
persistentVolumeClaim:
claimName: media-data
- name: books
persistentVolumeClaim:
claimName: readarr-books