refactor: use standard Ingress instead of ApisixRoute to match cluster patterns
Build MCP Services / build-mcp-filesystem (push) Has been cancelled
Details
Build MCP Services / build-mcp-filesystem (push) Has been cancelled
Details
This commit is contained in:
parent
2f5218e152
commit
973c6a0a8f
|
|
@ -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
|
||||
Loading…
Reference in New Issue