33 lines
616 B
YAML
33 lines
616 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: prowlarr
|
||
|
name: prowlarr
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: prowlarr
|
||
|
template:
|
||
|
metadata:
|
||
|
creationTimestamp: null
|
||
|
labels:
|
||
|
app: prowlarr
|
||
|
spec:
|
||
|
containers:
|
||
|
- image: hotio/prowlarr:release
|
||
|
name: prowlarr
|
||
|
ports:
|
||
|
- name: http
|
||
|
containerPort: 9696
|
||
|
protocol: TCP
|
||
|
volumeMounts:
|
||
|
- name: config
|
||
|
mountPath: /config
|
||
|
volumes:
|
||
|
- name: config
|
||
|
persistentVolumeClaim:
|
||
|
claimName: prowlarr-config-data
|
||
|
|