initial cut sonarr to radar

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

57
sonarr/deploy.yaml Normal file
View File

@ -0,0 +1,57 @@
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: sonarr
name: sonarr
spec:
replicas: 1
selector:
matchLabels:
app: sonarr
template:
metadata:
creationTimestamp: null
labels:
app: sonarr
spec:
containers:
- image: hotio/sonarr:release
name: sonarr
ports:
- name: http
containerPort: 8989
protocol: TCP
volumeMounts:
- name: config
mountPath: /config
- name: torrents
mountPath: /torrents
- name: data
mountPath: /data
- image: imartyn/krantor
name: krantor
env:
- name: PUTIO_DOWNLOAD_FOLDER_ID
value: "1092766658"
- name: PUTIO_WATCH_FOLDER
value: /torrents
- name: PUTIO_TOKEN
valueFrom:
secretKeyRef:
name: putio-token
key: token
volumeMounts:
- name: torrents
mountPath: /torrents
- name: data
mountPath: /data
volumes:
- name: config
persistentVolumeClaim:
claimName: sonarr-config-data
- name: torrents
emptyDir: {}
- name: data
emptyDir: {}

10
sonarr/pvc.yaml Normal file
View File

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

11
sonarr/service.yaml Normal file
View File

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