diff --git a/apps/base/customer1/openclaw/gateway-routes/route.yaml b/apps/base/customer1/openclaw/gateway-routes/route.yaml new file mode 100644 index 0000000..8743904 --- /dev/null +++ b/apps/base/customer1/openclaw/gateway-routes/route.yaml @@ -0,0 +1,18 @@ +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + name: cilium-to-kong + namespace: customer1 +spec: + parentRefs: + - name: openclaw-brain-gateway # REPLACE: Your Cilium Gateway CR name + kind: Gateway + rules: + - matches: + - path: + type: PathPrefix + value: / + backendRefs: + - name: kong-ingress-controller # REPLACE: Kong service name (e.g., kong-proxy or kong-ai-gateway) + port: 80 # Kong HTTP listener port (forwards to vLLM /v1) + # Optional: Add AI plugins/headers here if using Gateway API extensions diff --git a/apps/base/customer1/openclaw/kustomization.yaml b/apps/base/customer1/openclaw/kustomization.yaml index 0b55ba6..5f22739 100644 --- a/apps/base/customer1/openclaw/kustomization.yaml +++ b/apps/base/customer1/openclaw/kustomization.yaml @@ -11,3 +11,4 @@ resources: - pg-cluster-openclaw.yaml #- a100-vllm.yaml - xai-apikey.yaml + - gateway-routes/route.yaml