21 lines
413 B
YAML
21 lines
413 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: market-ingress
|
|
namespace: ai-agents
|
|
annotations:
|
|
k8s.apisix.apache.org/enable-websocket: "true"
|
|
spec:
|
|
ingressClassName: apisix
|
|
rules:
|
|
- host: market.applaude.net
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: market-app
|
|
port:
|
|
number: 80
|