Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions ray-operator/config/samples/ray-cluster-agc-gatewayapi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
apiVersion: gateway.networking.k8s.io/v1
kind: Gateway
metadata:
name: ray-cluster-gateway
annotations:
alb.networking.azure.io/alb-namespace: alb-test-infra # namespace for alb customer resource
alb.networking.azure.io/alb-name: alb-test # name of alb customer resource
spec:
gatewayClassName: azure-alb-external
listeners:
- name: http
port: 80
protocol: HTTP
allowedRoutes:
namespaces:
from: Same
---
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: ray-cluster-http-route
spec:
parentRefs:
- name: ray-cluster-gateway
rules:
- backendRefs:
- name: raycluster-kuberay-head-svc # Your head pod service
port: 8265
Loading