fix: use stable image tags for readarr and sonarr #76

Merged
gitea-admin merged 2 commits from orion/auto/fix-use-stable-image-tags-for-readarr-an-1779144281657 into main 2026-05-18 22:44:43 +00:00
Showing only changes of commit 45f6a49863 - Show all commits
+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