ray-on-gke icon indicating copy to clipboard operation
ray-on-gke copied to clipboard

Expose port for dashboard agent (needed for serve deploy)

Open ghpu opened this issue 1 year ago • 0 comments

First of all, thanks for this very usefull deployment template, very much appreciated !

I wanted to use ray serve, but the dashboard agent port (52365) was not exposed by the current service in Kuberay operator (v0.5.0) .

Easy work-around : add

head:
  ports:
        - containerPort: 6379
          name: gcs-server
        - containerPort: 8265 # Ray dashboard
          name: dashboard
        - containerPort: 10001
          name: client
        - containerPort: 52365
          name: dashboard-agent

to kuberay-values.yaml

ghpu avatar Jun 08 '23 14:06 ghpu