summaryrefslogtreecommitdiff
path: root/f3s/xplayer/helm-chart/templates/ingress.yaml
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-16 15:23:33 +0300
committerPaul Buetow <paul@buetow.org>2026-05-16 15:23:33 +0300
commitdcda17ded1d4580077f04ffb61767d3671c71b30 (patch)
treeaa0924c7af9bf83d421ba4b6ce83e1341067ac19 /f3s/xplayer/helm-chart/templates/ingress.yaml
parent80259c162cdf5faca71815a396af29fe5e5aea77 (diff)
Deploy xplayer and update player image
Diffstat (limited to 'f3s/xplayer/helm-chart/templates/ingress.yaml')
-rw-r--r--f3s/xplayer/helm-chart/templates/ingress.yaml20
1 files changed, 20 insertions, 0 deletions
diff --git a/f3s/xplayer/helm-chart/templates/ingress.yaml b/f3s/xplayer/helm-chart/templates/ingress.yaml
new file mode 100644
index 0000000..df8420d
--- /dev/null
+++ b/f3s/xplayer/helm-chart/templates/ingress.yaml
@@ -0,0 +1,20 @@
+apiVersion: networking.k8s.io/v1
+kind: Ingress
+metadata:
+ name: xplayer-ingress
+ namespace: services
+ annotations:
+ spec.ingressClassName: traefik
+ traefik.ingress.kubernetes.io/router.entrypoints: web
+spec:
+ rules:
+ - host: xplayer.f3s.buetow.org
+ http:
+ paths:
+ - path: /
+ pathType: Prefix
+ backend:
+ service:
+ name: xplayer-service
+ port:
+ number: 8080