How to check ray serve deployment log from k8s?

The command kubectl describe rayservice ray_serve_name give me the summary status of my deployments but I need to see the detail logs to understand why some deployment failed, is there anyway to do that?
It’s frustrating to see the same message (status Deploying) from the describe command without knowing what’s going on. It seems ray kept retrying if the deployment fails but there’s no status from the deployment

Pending Service Status:
App Status:
Last Update Time: 2022-09-14T00:34:30Z
Status: DEPLOYING
Dashboard Status:
Health Last Update Time: 2022-09-14T00:34:30Z
Is Healthy: true
Last Update Time: 2022-09-14T00:34:30Z
Ray Cluster Name: many-models-raycluster-rdtcn
Ray Cluster Status:
Service Status: Running
Events:

You can access logs at /tmp/ray/session_latest/logs on the Ray cluster nodes, which should give more information for debugging.

Does kubectl logs or the commands at Monitoring Ray States — Ray 3.0.0.dev0 provide anything useful?