coreweave / dashboard

General-purpose web UI for Kubernetes clusters
Apache License 2.0
0 stars 0 forks source link

Search does not work #4

Open vpatov opened 7 months ago

vpatov commented 7 months ago

The tenant-sta-43b6c8-agunnar namespace has plenty of slurm resources (in this case deployments):

Screenshot 2024-01-04 145027

Trying to search for "slurm" fails: Screenshot 2024-01-04 144912

This seems to be related to #3 , the page makes a bunch of GET requests for resources, but because the CronJob request is made first and fails, the page redirects and the other requests are aborted (NS_BINDING_ABORTED in firefox). Since the request abortion is timing-dependent, sometimes the other requests go through:

Screenshot 2024-01-04 145406

None of the other ones seem to 404, although some of them do return RBAC errors (tenant cannot request cluster-scoped resources).

It's possible that fixing #2 and #3 would fix this too