1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2025-12-13 09:46:23 +00:00
Files
geek-cookbook/manuscript/recipes/kubernetes/kubernetes-dashboard.md

1.5 KiB

Kubernetes Dashboard

Yes, Kubernetes is complicated. There are lots of moving parts, and debugging what's gone wrong and why, can be challenging.

Fortunately, to assist in day-to-day operation of our cluster, and in the occasional "how-did-that-ever-work" troubleshooting, we have available to us, the mighty Kubernetes Dashboard:

Kubernetes Dashboard Screenshot

Using the dashboard, you can:

  • Visual cluster load, pod distribution
  • Examine Kubernetes objects, such as Deployments, Daemonsets, ConfigMaps, etc
  • View logs
  • Deploy new YAML manifests
  • Lots more!

Ingredients

  1. A Kubernetes Cluster, with
  2. OIDC-enabled authentication
  3. An Ingress Controller (Traefik Ingress or NGinx Ingress)
  4. A DNS name for your dashboard instance (dashboard.example.com, below) pointing to your load balancer, fronting your ingress controller
  5. A KeyCloak instance for authentication

Preparation

Access Kanboard

At this point, you should be able to access your instance on your chosen DNS name (i.e. https://dashboard.example.com)

--8<-- "recipe-footer.md"