59 lines
1.4 KiB
YAML
59 lines
1.4 KiB
YAML
---
|
|
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: flaresolverr
|
|
image: flaresolverr/flaresolverr:v3.4.6
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- containerPort: 8191
|
|
envFrom:
|
|
- configMapRef:
|
|
name: flaresolverr-envs
|
|
securityContext:
|
|
seccompProfile:
|
|
type: RuntimeDefault
|
|
allowPrivilegeEscalation: false
|
|
capabilities:
|
|
drop:
|
|
- "ALL"
|
|
- name: prowlarr
|
|
image: linuxserver/prowlarr:2.3.0
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- containerPort: 9696
|
|
envFrom:
|
|
- configMapRef:
|
|
name: prowlarr-envs
|
|
volumeMounts:
|
|
- mountPath: /config
|
|
name: prowlarr-config
|
|
securityContext:
|
|
seccompProfile:
|
|
type: RuntimeDefault
|
|
allowPrivilegeEscalation: false
|
|
capabilities:
|
|
drop:
|
|
- "ALL"
|
|
add:
|
|
- "CHOWN"
|
|
- "SETUID"
|
|
- "SETGID"
|