From 973c6a0a8f41e167ad4625c6ba639cae63c4c0e3 Mon Sep 17 00:00:00 2001 From: Antigravity Date: Thu, 14 May 2026 08:52:38 -0400 Subject: [PATCH] refactor: use standard Ingress instead of ApisixRoute to match cluster patterns --- curio/k8s/ingress.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 curio/k8s/ingress.yaml diff --git a/curio/k8s/ingress.yaml b/curio/k8s/ingress.yaml new file mode 100644 index 0000000..c4de941 --- /dev/null +++ b/curio/k8s/ingress.yaml @@ -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