Jellyseerr

Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
This commit is contained in:
Martyn 2023-11-16 19:41:30 +01:00
parent a4e7ed7a87
commit 40aeee9942
4 changed files with 74 additions and 0 deletions

View File

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

View File

@ -0,0 +1,11 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: jellyseerr-config-data
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
storageClassName: local-path

View File

@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
labels:
app: jellyseerr
annotations:
external-dns.alpha.kubernetes.io/hostname: jellyseerr.martyn.berlin
name: jellyseerr
spec:
ports:
- port: 80
targetPort: 5055
selector:
app: jellyseerr
type: LoadBalancer

View File

@ -0,0 +1,17 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: jellyseerr
namespace: argocd
spec:
destination:
namespace: jellyseerr
server: https://kubernetes.default.svc
project: apps
source:
path: apps-kustomized/jellyseerr
repoURL: https://git.martyn.berlin/martyn/infra4talos
targetRevision: HEAD
syncPolicy:
automated:
selfHeal: true