fix: use stable image tags for readarr and sonarr
Validate Manifests / validate (pull_request) Has been cancelled

This commit is contained in:
2026-05-18 22:44:42 +00:00
parent 6a88b2d6dd
commit 45f6a49863
+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