Ditch the Default K8s Dashboard: Meet Kite, the Lightweight Pro‑Grade UI
Kite is a modern, lightweight Kubernetes dashboard built with Go and React that offers real‑time metrics, multi‑cluster support, and enterprise‑grade security, and can be installed via Helm or raw YAML with access through LoadBalancer or Ingress.
What is Kite
Kite is a lightweight Kubernetes dashboard with a Chinese UI. It uses a Go backend and a React frontend to provide real‑time metrics, multi‑cluster support, and enterprise‑grade security.
Installation
1. Install with Helm (recommended)
helm repo add kite https://zxh326.github.io/kite
helm repo update
helm install kite kite/kite -n kube-systemFor production, customize the JWT secret and encryption key in the Helm values file.
2. Install by applying the manifest directly
kubectl apply -f deploy/install.yaml
# or from the remote URL
kubectl apply -f https://raw.githubusercontent.com/zxh326/kite/refs/heads/main/deploy/install.yamlAccessing the Dashboard
Expose the kite Service after deployment.
LoadBalancer (cloud environments)
kubectl patch svc kite -n kite-system -p '{"spec": {"type": "LoadBalancer"}}'Ingress (recommended for production)
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: kite
namespace: kite-system
spec:
ingressClassName: nginx
rules:
- host: kite.example.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: kite
port:
number: 8080After the endpoint is reachable, the initial setup wizard runs.
Multi‑cluster configuration
Kite can be configured for multiple clusters to enable real‑time metrics, resource management, and log streaming.
Summary
Kite focuses on frequent operational tasks—status inspection, log viewing, configuration editing, command execution—while providing a Chinese interface.
Repository: https://github.com/zxh326/kite
Signed-in readers can open the original source through BestHub's protected redirect.
This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactand we will review it promptly.
Efficient Ops
This public account is maintained by Xiaotianguo and friends, regularly publishing widely-read original technical articles. We focus on operations transformation and accompany you throughout your operations career, growing together happily.
How this landed with the community
Was this worth your time?
0 Comments
Thoughtful readers leave field notes, pushback, and hard-won operational detail here.
