0

Running on kind, I've installed kuberay following the docs.

I brought up the dashboard:

k port-forward svc/raycluster-heterogeneous-head-svc 8265

But this doesn't show any version information

Romeo Kienzler
  • 3,373
  • 3
  • 36
  • 58

1 Answers1

0

You can simply run the ray --version command inside the head pod, the following did the job for me:

kubectl exec `kubectl get po |awk '{print $1}' |grep head` -- ray --version

Which returned the following for me:

ray, version 2.2.0

Romeo Kienzler
  • 3,373
  • 3
  • 36
  • 58