--- apiVersion: apps/v1 kind: Deployment metadata: name: prowlarr labels: app: prowlarr spec: replicas: 1 selector: matchLabels: app: prowlarr template: metadata: labels: app: prowlarr spec: volumes: - name: prowlarr-config persistentVolumeClaim: claimName: prowlarr-storage containers: - name: prowlarr image: linuxserver/prowlarr:2.3.0 imagePullPolicy: IfNotPresent ports: - containerPort: 9696 env: - name: PUID value: "1000" - name: PGID value: "1000" - name: TZ value: Europe/Amsterdam volumeMounts: - mountPath: /config name: prowlarr-config securityContext: seccompProfile: type: RuntimeDefault allowPrivilegeEscalation: false capabilities: drop: - "ALL" add: - "CHOWN" - "SETUID" - "SETGID"