What web UI should I provide for internal Kubernetes users?

0
8
Asked By MellowOrbit42 On

I manage several Kubernetes clusters on AWS EKS and want to provide internal users with a web interface for viewing and managing the resources they're allowed to access. I'm currently testing an in-cluster Headlamp deployment with OIDC authentication through Keycloak, backed by Google Workspace, but it feels somewhat slow and I'm not completely satisfied with it. Before making it available to users, I'd like to hear about comparable setups, alternative tools, and general recommendations. I'm especially interested in solutions that support Kubernetes RBAC and can work across multiple clusters.

5 Answers

Answered By QuietPebble_29 On

Headlamp is not the only option. Lens is another familiar choice, though its licensing and the distinction between the desktop and web experience may be drawbacks. The older Kubernetes Dashboard is generally not a good direction because it’s deprecated and no longer actively maintained.

Answered By CedarFox_81 On

Radar could be a good fit. It can run in the cluster, supports OIDC/Keycloak, and honors each user’s Kubernetes RBAC permissions. Its focus is less on exposing every object individually and more on showing relationships, topology, changes, issues, and GitOps context, which may be easier for developers who aren’t Kubernetes specialists.

Answered By BrightMango7 On

Argo CD is a solid choice if the main workflow is GitOps. It provides a useful deployment and application dashboard, but it isn’t really a general-purpose Kubernetes console for arbitrary cluster operations. Whether it fits depends on what users actually need to do.

Answered By NorthwindJay5 On

Rancher is worth evaluating, especially if you want one interface for multiple clusters. It supports centralized cluster management and access control, although some areas—particularly applications and charts—can feel slow depending on the scale and workload.

Answered By SilverKite63 On

For data-science-oriented users, Onyxia may be worth a look. It includes integrations around Keycloak/OIDC and persistent S3-backed storage, so it can be more suitable than a generic cluster browser when users need to launch and manage data tools.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.