UI-UX/k8s/ingress.yaml
zyc c19b3b7b05
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 6m41s
ci: add CI/CD pipeline for cyberstar.airlabs.art
- Dockerfile: multi-stage Next.js standalone build with pnpm + prisma
- k8s manifests: single web deployment + Traefik ingress + LE TLS
- Gitea workflow: build/push to Volcano CR, deploy to K3s, log-center failure reporting
- next.config: enable standalone output for slim container image

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-13 13:44:04 +08:00

24 lines
494 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: cyberstar-ingress
annotations:
kubernetes.io/ingress.class: "traefik"
cert-manager.io/cluster-issuer: "letsencrypt-prod"
spec:
tls:
- hosts:
- cyberstar.airlabs.art
secretName: cyberstar-tls
rules:
- host: cyberstar.airlabs.art
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: cyberstar-web
port:
number: 80