32 lines
637 B
YAML
32 lines
637 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: jellyseerr
|
||
|
name: jellyseerr
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: jellyseerr
|
||
|
template:
|
||
|
metadata:
|
||
|
creationTimestamp: null
|
||
|
labels:
|
||
|
app: jellyseerr
|
||
|
spec:
|
||
|
containers:
|
||
|
- image: fallenbagel/jellyseerr:1.7.0
|
||
|
name: jellyseerr
|
||
|
ports:
|
||
|
- name: http
|
||
|
containerPort: 5055
|
||
|
protocol: TCP
|
||
|
volumeMounts:
|
||
|
- name: config
|
||
|
mountPath: /app/config
|
||
|
volumes:
|
||
|
- name: config
|
||
|
persistentVolumeClaim:
|
||
|
claimName: jellyseerr-config-data
|