Radar: Local-first Kubernetes UI in a single Go binary(github.com)
github.com
Radar: Local-first Kubernetes UI in a single Go binary
https://github.com/skyhook-io/radar
11 コメント
Great app to overlook your k8s. I especially liked the 'unhealthy workloads' part - I found it very useful
nteresting approach — especially the local-first angle.
Curious how you're thinking about state consistency when multiple users interact with the system?
In a different context (hiring systems), we’ve seen local vs centralized trade-offs become a big design constraint.
In a different context (hiring systems), we’ve seen local vs centralized trade-offs become a big design constraint.
Local binary connects directly to the k8s cluster (queries the API server) using the same Go SDK as k8s itself. Keep a local cache and listens to live updates using k8s native watchers.
The load on the server is not that much for a reasonable number of users, each just syncs the data to their local client.
It also supports install with Helm in the cluster, so a single installation can serve any number of users - data gets synced once (continuously), every user gets served the local embedded UI. You probably want to integrate with auth for that - supports proxy and OIDC natively.
It also supports install with Helm in the cluster, so a single installation can serve any number of users - data gets synced once (continuously), every user gets served the local embedded UI. You probably want to integrate with auth for that - supports proxy and OIDC natively.
[deleted]
Please refrain from astroturfing
Simple and very useful.
[deleted]
Looks awesome!
Looks Great!
Nice!