feat(nci-11): add Kubernetes manifests for nowchess-analysis service (#392)

Co-authored-by: Janis Eccarius <eccariusjanis@gmail.com>
Reviewed-on: #392
This commit was merged in pull request #392.
This commit is contained in:
2026-06-16 19:42:04 +02:00
parent 0442352b3e
commit 63e9d0512c
66 changed files with 6523 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: spark-master-ingress
labels:
app.kubernetes.io/name: spark-cluster
app.kubernetes.io/part-of: nowchess
spec:
ingressClassName: traefik
rules:
- host: spark.nowchess.janis-eccarius.de
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: spark-master-svc
port:
number: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: spark-history-ingress
labels:
app.kubernetes.io/name: spark-cluster
app.kubernetes.io/part-of: nowchess
annotations:
# NOTE: The Bitnami spark chart 9.2.10 does not include a standalone history
# server deployment or service. This Ingress is a placeholder. To activate
# history server access, deploy a separate spark-history-server Deployment
# and Service named spark-history-server-svc on port 18080.
spec:
ingressClassName: traefik
rules:
- host: spark-history.nowchess.janis-eccarius.de
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: spark-history-server-svc
port:
number: 18080