Files
xiaohongshu-mcp/k8s/base/ingress.yaml
Yaojia Wang 4afe4aab1e
Some checks failed
continuous-integration/drone Build is failing
Build and Release / build (push) Has been cancelled
Add CICD
2026-03-22 17:08:55 +01:00

27 lines
679 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: xiaohongshu-mcp
namespace: xiaohongshu-mcp
annotations:
nginx.ingress.kubernetes.io/proxy-body-size: "50m"
nginx.ingress.kubernetes.io/proxy-read-timeout: "300"
nginx.ingress.kubernetes.io/proxy-send-timeout: "300"
spec:
ingressClassName: nginx
tls:
- hosts:
- xiaohongshu-mcp.k8s.home
secretName: xiaohongshu-mcp-tls
rules:
- host: xiaohongshu-mcp.k8s.home
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: xiaohongshu-mcp
port:
number: 18060