Files
geo/deploy/k3s/ingress.yaml
T
root 430a83e8dd
Deployment Config CI / Deployment Config (push) Successful in 12s
feat(deploy): update ingress rules and add media supply configuration
2026-05-31 11:14:06 +08:00

40 lines
902 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: geo-rankly-web
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: web
spec:
ingressClassName: traefik
rules:
- host: saas.shengxintui.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: frontend
port:
number: 80
- host: ops.shengxintui.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: ops-web
port:
number: 80
- host: api.shengxintui.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: tenant-api
port:
number: 8080