Dashboard UI does not list all clusters

Hello,

I launched two clusters referring to commands in documentation here (Deploying on Kubernetes — Ray v2.0.0.dev0) but I see only one in dashboard UI

(ray) [asmalvan@learn-ray-1 learn-ray]$ kubectl -n ray get pods
NAME READY STATUS RESTARTS AGE
example-cluster-ray-head-mmr8n 1/1 Running 0 76m
example-cluster-ray-worker-mqmxd 1/1 Running 0 76m
example-cluster-ray-worker-zsns8 1/1 Running 0 9m47s
example-cluster2-ray-head-6rb9l 1/1 Running 0 63s
example-cluster2-ray-worker-dc7lv 1/1 Running 0 51s
ray-operator-pod 1/1 Running 0 77m

Each cluster runs its own dashboard, accessible via a Kubernetes Service assigned to the cluster.
One Service is configured per cluster – you can list the services with kubectl -n ray get service.

The port-forward command to access the second cluster’s dashboard via the cluster’s head k8s service is
kubectl -n ray port-forward service/example-cluster2-ray-head 8265:8265