Romeo Kienzler
Romeo Kienzler

Reputation: 3537

How can I find out which Ray version is installed on kuberay?

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

Upvotes: 0

Views: 928

Answers (1)

Romeo Kienzler
Romeo Kienzler

Reputation: 3537

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

Upvotes: 0

Related Questions