Merge pull request #62 from sirius0xdev/feat/cilium-gateway-to-kong-route
feat: add HTTPRoute (cilium-gateway-to-kong-route)
This commit is contained in:
commit
6f9a260d93
2 changed files with 19 additions and 0 deletions
18
apps/base/customer1/openclaw/gateway-routes/route.yaml
Normal file
18
apps/base/customer1/openclaw/gateway-routes/route.yaml
Normal file
|
|
@ -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
|
||||
|
|
@ -11,3 +11,4 @@ resources:
|
|||
- pg-cluster-openclaw.yaml
|
||||
#- a100-vllm.yaml
|
||||
- xai-apikey.yaml
|
||||
- gateway-routes/route.yaml
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue