DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Manage Microservices With Docker Compose
  • KubeKey: A Lightweight Installer for Kubernetes and Cloud Native Addons
  • Smart Deployment Strategies for Modern Applications
  • How We Diagnosed a Hidden Scheduler Failure in a Docker Swarm Cluster Serving 2 Million Users

Trending

  • Why DDoS Protection Is an Architectural Decision for Developers
  • Data Contracts as the "Circuit Breaker" for Model Reliability
  • Contract-First Integration: Building Scalable Systems With Flyway, OpenAPI, and Kafka
  • Your AI Agent Tests Are Passing, But Your Agent Is Still Broken
  1. DZone
  2. Testing, Deployment, and Maintenance
  3. Deployment
  4. Alternative Kubernetes Dashboards

Alternative Kubernetes Dashboards

In this post, we'll take a look at some of the alternative Kubernetes dashboards as a number of alternatives have been developed recently that are worth looking into.

By 
Matthew Casperson user avatar
Matthew Casperson
·
Oct. 07, 23 · Analysis
Likes (42)
Comment
Save
Tweet
Share
4.2K Views

Join the DZone community and get the full member experience.

Join For Free

In the beginning, there was the Kubernetes Dashboard. This dashboard is the default option for anyone who wants to monitor a Kubernetes cluster, but over the years a number of alternatives have been developed that are worth looking into.

In this post, I take a look at some of these alternative Kubernetes dashboards.

The Sample Kubernetes Cluster

For this post, I ran minikube locally, populated with the Bookinfo application provided by Istio.

K8dash

K8Dash homepage

K8Dash is the easiest way to manage your Kubernetes cluster.

K8Dash has a clean, modern interface that should be familiar to anyone who has used the official Kubernetes Dashboard. A K8Dash’s selling point is that the interface is automatically updated, so you don't need to manually refresh the page to see the current state of the cluster.

Installation was painless with the following commands:

Shell
 
kubectl apply -f https://raw.githubusercontent.com/herbrandson/k8dash/master/kubernetes-k8dash.yaml
kubectl port-forward service/k8dash 9999:80 -n kube-system


Constellate

Visualize Kubernetes Application

Constellate is not so much a Kubernetes dashboard as a tool for creating, linking, and visualizing Kubernetes resources.

The main canvas lets you add new Kubernetes resources like Deployments, Services, and Ingresses. A dynamic user interface lets you build up the YAML description of these resources, exposing the available child properties with an associated description.

Two related entities can then be connected, with Konstellate displaying the associated properties that link them together.

One challenge I found editing YAML by hand is that I'm forever Googling the exact property names and their relationships. The context-aware Konstellate editor is a great way to explore the various properties available for a given entity.

It would be great if you could visualize the resources in an existing cluster, but this has yet to be implemented.

Constellate is built from a source and doesn't provide any pre-built Docker images or binaries that I could see. All you need is Clojure and a single command to build and run the app, but it can take a few minutes for all the dependencies to download. The GitHub page links to a demo, but it was down when I tried it.

Overall, though, this is a useful app, and definitely a project to keep an eye on.

Kubernator

Kubernator homepage

In contrast to high-level Kubernetes Dashboard, Kubernator provides low-level control and clean view on all objects in a cluster with the ability to create new ones, edit, and resolve conflicts.

Kubernator is a capable YAML editor linked directly to a Kubernetes cluster. The navigation tree displays a filesystem-like view of the cluster, while the editor provides features like tabs, keyboard shortcuts, and different views.

In addition to editing raw YAML, Kubernator visualizes the Role Based Access Control (RBAC) resources showing the relationships between users, groups, service accounts, roles, and cluster roles.

Installation is quick, with Docker images ready to be deployed into an existing Kubernetes cluster:

Shell
 
kubectl create ns kubernator
kubectl -n kubernator run --image=smpio/kubernator --port=80 kubernator
kubectl -n kubernator expose deploy kubernator
kubectl proxy


Next, just open the service proxy URL in your browser.

Kubernetes Operational View

Kubernetes Operational View homepage

Read-only system dashboard for multiple K8s clusters

Have you ever wanted to manage your Kubernetes cluster like an ubergeek from the movies? Then KOV is for you.

Built on WebGL, KOV visualizes your Kubernetes dashboard as a series of nested boxes showing the cluster, nodes, and pods. Additional graphs are nested directly into these elements, and tool tips provide additional details. The visualization can be zoomed and panned to drill down into individual pods.

KOV is a read-only dashboard, so you can’t manage a cluster with it or set alerts.

However, I used KOV to demonstrate how a Kubernetes cluster works as pods and nodes are added and removed, with people saying that this particular visualization was the first time they understood what Kubernetes was.

KOV provides a collection of YAML files that can be deployed as a group to an existing cluster, making installation easy:

Shell
 
kubectl apply -f deploy
kubectl port-forward service/kube-ops-view 8080:80


Octant

Octant homepage

A web-based, highly extensible platform for developers to better understand the complexity of Kubernetes clusters.

Octant is a locally installed application that exposes a web-based dashboard. Octant has an intuitive interface for navigating, inspecting, and editing Kubernetes resources, with the ability to visualize related resources. It also has a light and dark mode.

I particularly liked the ability to configure port forwarding directly from the interface.

 container service


Installation was easy with packages available from Brew and Chocolatey and compiled RPM and DEB packages for Linux.

Weave Scope

Weave Scope homepage

Monitoring, visualization & management for Docker & Kubernetes

Weave Scope provides a visualization of the Kubernetes nodes, pods, and containers showing details about memory and CPU usage.

Of more interest is Weave Scope’s ability to capture how the pods are communicating with each other. This insight is not provided by other dashboards I tested here.

Weave Scope is very process-oriented though, ignoring static resources like config maps, secrets, etc.

Installation is simple, with a YAML file that can be deployed directly into the Kubernetes cluster.

Shell
 
kubectl apply -f "https://cloud.weave.works/k8s/scope.yaml?k8s-version=$(kubectl version | base64 | tr -d '\n')"
kubectl port-forward -n weave "$(kubectl get -n weave pod --selector=weave-scope-component=app -o jsonpath='{.items..metadata.name}')" 4040


Conclusion

If the official Kubernetes dashboard isn’t meeting your needs, there's a huge range of high-quality, free, and open-source alternatives to choose from. Overall, I was impressed at how easy these dashboards were to install, and it’s clear that a great deal of work has gone into their design, with most offering at least one compelling reason to switch.

Happy deployments!

Kubernetes YAML Dashboard (Mac OS) Docker (software) Data Transformation Services Visual editor

Published at DZone with permission of Matthew Casperson. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Manage Microservices With Docker Compose
  • KubeKey: A Lightweight Installer for Kubernetes and Cloud Native Addons
  • Smart Deployment Strategies for Modern Applications
  • How We Diagnosed a Hidden Scheduler Failure in a Docker Swarm Cluster Serving 2 Million Users

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook