Add Prowlarr

Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
This commit is contained in:
Martyn 2023-02-11 20:00:12 +01:00
parent 3a8a765ab4
commit c4c64fc40f
3 changed files with 53 additions and 0 deletions

32
prowlarr/deploy.yaml Normal file
View File

@ -0,0 +1,32 @@
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

10
prowlarr/pvc.yaml Normal file
View File

@ -0,0 +1,10 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: prowlarr-config-data
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi

11
prowlarr/service.yaml Normal file
View File

@ -0,0 +1,11 @@
apiVersion: v1
kind: Service
metadata:
labels:
app: prowlarr
name: prowlarr
spec:
ports:
- port: 9696
selector:
app: prowlarr