add newest changes to namespaces
This commit is contained in:
13
namespaces/jellyfin/ingress.yml
Normal file
13
namespaces/jellyfin/ingress.yml
Normal 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
|
||||
29
namespaces/jellyfin/jellyfin-deployment.yml
Normal file
29
namespaces/jellyfin/jellyfin-deployment.yml
Normal 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
|
||||
13
namespaces/jellyfin/jellyfin-service.yml
Normal file
13
namespaces/jellyfin/jellyfin-service.yml
Normal 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
|
||||
|
||||
4
namespaces/jellyfin/namespace.yml
Normal file
4
namespaces/jellyfin/namespace.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
kind: Namespace
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: jellyfin
|
||||
Reference in New Issue
Block a user