--- apiVersion: apps/v1 kind: Deployment metadata: name: prowlarr namespace: arrstack spec: replicas: 1 strategy: # RWO config PVC + single stateful SQLite DB: never run two pods at once. type: Recreate selector: matchLabels: app: prowlarr template: metadata: labels: app: prowlarr spec: securityContext: fsGroup: 1000 fsGroupChangePolicy: OnRootMismatch containers: - name: prowlarr image: artifactapi.k8s.syd1.au.unkin.net/dockerhub/linuxserver/prowlarr:2.5.2 imagePullPolicy: IfNotPresent ports: - name: http containerPort: 9696 protocol: TCP env: - name: PUID value: "1000" - name: PGID value: "1000" - name: TZ value: Australia/Sydney livenessProbe: httpGet: path: /ping port: http initialDelaySeconds: 30 periodSeconds: 30 timeoutSeconds: 5 failureThreshold: 3 readinessProbe: httpGet: path: /ping port: http initialDelaySeconds: 10 periodSeconds: 10 timeoutSeconds: 5 failureThreshold: 3 resources: requests: cpu: 100m memory: 256Mi limits: cpu: "1" memory: 512Mi volumeMounts: - name: config mountPath: /config volumes: - name: config persistentVolumeClaim: claimName: prowlarr-config