refactor: use standard Ingress instead of ApisixRoute to match cluster patterns
Build MCP Services / build-mcp-filesystem (push) Has been cancelled Details

This commit is contained in:
Antigravity 2026-05-14 08:52:38 -04:00
parent 2f5218e152
commit 973c6a0a8f
1 changed files with 30 additions and 0 deletions

30
curio/k8s/ingress.yaml Normal file
View File

@ -0,0 +1,30 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: curio-ingress
namespace: curio
annotations:
k8s.apisix.apache.org/enable-websocket: "true"
spec:
ingressClassName: apisix
rules:
- host: curio.applaude.net
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: curio-app
port:
number: 80
- host: curaflow.applaude.net
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: curio-app
port:
number: 80