# Nginx Ingress Controller ConfigMap apiVersion: v1 kind: ConfigMap metadata: name: nginx-config namespace: taiji-ai data: nginx.conf: | user nginx; worker_processes auto; error_log /var/log/nginx/error.log notice; pid /var/run/nginx.pid; events { worker_connections 1024; use epoll; multi_accept on; } http { include /etc/nginx/mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for" ' 'rt=$request_time ut="$upstream_response_time"'; access_log /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; client_max_body_size 50M; gzip on; gzip_vary on; gzip_min_length 1024; gzip_proxied any; gzip_comp_level 6; gzip_types text/plain text/css text/xml text/javascript application/json application/javascript application/xml+rss; # 上游服务器配置 - 使用K8s服务名 upstream mcp-server { least_conn; server mcp-server:8000 max_fails=3 fail_timeout=30s; keepalive 32; } upstream data-ingestion { least_conn; server data-ingestion:8000 max_fails=3 fail_timeout=30s; keepalive 32; } limit_req_zone $binary_remote_addr zone=api:10m rate=100r/m; limit_req_zone $binary_remote_addr zone=auth:10m rate=20r/m; server { listen 80; server_name _; add_header X-Frame-Options DENY; add_header X-Content-Type-Options nosniff; add_header X-XSS-Protection "1; mode=block"; location /health { access_log off; return 200 "OK\n"; add_header Content-Type text/plain; } # MCP服务器路由 location /api/mcp/ { limit_req zone=api burst=50 nodelay; proxy_pass http://mcp-server/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_connect_timeout 30s; proxy_send_timeout 30s; proxy_read_timeout 30s; } # 数据接入服务路由 location /api/data/ { limit_req zone=api burst=30 nodelay; proxy_pass http://data-ingestion/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_connect_timeout 60s; proxy_send_timeout 60s; proxy_read_timeout 300s; } # 默认响应 location / { return 200 '{"status":"ok","service":"taiji-ai-gateway"}'; add_header Content-Type application/json; } } } --- # API Gateway Deployment apiVersion: apps/v1 kind: Deployment metadata: name: api-gateway namespace: taiji-ai labels: app: api-gateway spec: replicas: 2 selector: matchLabels: app: api-gateway template: metadata: labels: app: api-gateway spec: containers: - name: nginx image: nginx:alpine ports: - containerPort: 80 name: http resources: requests: memory: "64Mi" cpu: "50m" limits: memory: "256Mi" cpu: "200m" livenessProbe: httpGet: path: /health port: 80 initialDelaySeconds: 10 periodSeconds: 10 readinessProbe: httpGet: path: /health port: 80 initialDelaySeconds: 5 periodSeconds: 5 volumeMounts: - name: nginx-config mountPath: /etc/nginx/nginx.conf subPath: nginx.conf volumes: - name: nginx-config configMap: name: nginx-config --- apiVersion: v1 kind: Service metadata: name: api-gateway namespace: taiji-ai annotations: service.beta.kubernetes.io/azure-load-balancer-health-probe-request-path: /health spec: type: LoadBalancer selector: app: api-gateway ports: - name: http port: 80 targetPort: 80