add newest changes to namespaces

This commit is contained in:
2025-01-22 21:34:25 -05:00
parent e408c7cf4e
commit 4fd0c84d48
38 changed files with 908 additions and 148 deletions

View File

@@ -0,0 +1,13 @@
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
name: jellyfin-ingress
namespace: jellyfin
spec:
entryPoints:
- jellyfin
routes:
- services:
- name: jellyfin
port: 8096

View File

@@ -0,0 +1,29 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: jellyfin-deployment
labels:
app: jellyfin
spec:
replicas: 1
selector:
matchLabels:
app: jellyfin
template:
metadata:
labels:
app: jellyfin
spec:
containers:
- name: jellyfin
image: jellyfin/jellyfin
resources:
requests:
memory: "64Mi"
cpu: "250m"
limits:
memory: "128Mi"
cpu: "500m"
ports:
- containerPort: 8096
protocol: TCP

View File

@@ -0,0 +1,13 @@
apiVersion: v1
kind: Service
metadata:
name: jellyfin
spec:
selector:
app: jellyfin
ports:
- protocol: TCP
port: 8096
targetPort: 8096
type: LoadBalancer

View File

@@ -0,0 +1,4 @@
kind: Namespace
apiVersion: v1
metadata:
name: jellyfin