We appreciate your interest in CiliKube. If you find this project valuable for your Kubernetes management needs, please consider starring the repository ⭐. Community support drives continuous development and improvement.
Stay updated with the latest releases and technical insights by following our WeChat Official Account 希里安.
We extend our gratitude to all contributors who have helped improve CiliKube through code contributions, bug reports, and feature suggestions.
This project's CDN acceleration and security protection services are generously sponsored by Tencent EdgeOne.
CiliKube is an open-source Kubernetes multi-cluster management platform built with React, TypeScript, Go, and Gin.
From v1.0, login lands on the AI workspace first; the resource console is still there — just no longer the only door.
In one line:
AI is the navigator / read-only investigator; the console remains the source of truth.
Ask “how is it now / what’s broken,” follow resource clues into detail, logs, or a terminal — AI stays read-only by default and does not mutate the cluster for you.
- Topology (Observe): Ingress → Service → Workload → Pod graph, Traffic mode with RPS flow (incl. fan-out to pods)
- Timeline (Observe): status segments + live Event markers; Showcase backfills demo history
- Nav UX: collapsible sidebar groups; reliable detail Back / browser history with Logs console
- Showcase: kube-dns ↔ coredns wiring so Topology Traffic demos cleanly
Highlights vs earlier releases:
- AI workspace: home after login, Skills (Featured / Inspect / Troubleshoot / Navigate +
/menu + custom prompts), Investigate with AI from resources - Fleet overview: multi-cluster health cards, per-card / fleet inspect
- Resource console: workloads / networking (incl. Gateway API) / config / storage / RBAC, logs & web terminal
- Monitoring: metrics-server snapshots + Prometheus series (Showcase curves on the public demo)
- Desktop apps: Windows / macOS / Linux with embedded backend reading local kubeconfig
- Themes: tron / paper / matrix / amber / nord / sakura / midnight-violet / solarized
More screenshots (login · chat · monitoring · pods · themes)
- Triage first, deep dive second: land on AI after login; console in the top bar; resource pages and fleet cards can throw context back to the investigator
- See the path, then the history: Topology (Traffic) for Service → Workload → Pod flow; Timeline for status segments and event markers
- Clear read-only boundary: default agent is the cluster investigator; writes, approvals, and backups still go through the console and your existing process
- Browser + desktop: same UI; desktop reads local kubeconfig without standing up a web stack first
- Cloud-native / DevOps: lightweight, customizable multi-cluster UI with ask-first workflows
- Frontend developers: hands-on React + TypeScript + Tailwind
- Backend developers: Go + Gin and client-go integration
- Learners: understand Kubernetes resource models and troubleshooting paths by using them
CiliKube started as a full-stack learning project that grew into a product you can actually open.
v1.0 adds an entry that matches how people troubleshoot — ask first, then change.
- Demo: https://cilikube.cillian.website
(Public demo is a Showcase fake fleet; login can fill demo accounts in one click — not a production ops console)
- Demo / product site: cilikube.cillian.website
- Intro post: CiliKube 1.0.0
System Requirements:
- Node.js >= 20.0.0 (developed and tested with v24.14.1)
- Go >= 1.26.0 (developed and tested with v1.26.4)
- PNPM >= 10.x
- Kubernetes / kubectl 1.36.2 (client-go aligned)
Frontend Architecture:
- Core:
React 19TypeScript 7Vite 8Tailwind CSS 4 - Data / Routing:
TanStack QueryReact Router - Motion / Charts:
Framer MotionRecharts - HTTP Client:
Axios - The previous Vue UI remains in cilikube-web
Backend Architecture:
- Framework:
GoGin - Kubernetes Integration:
client-go - Authentication:
JWT - Real-time Communication:
Gorilla WebSocket - Configuration:
Viper - Logging:
Zap Logger - AI: mock / OpenAI-compatible SSE (read-only tool calls)
- AI workspace: home after login, SSE chat, read-only tools, Skills (
/+ custom), Investigate-with-AI, session history, jump into console - Fleet overview: multi-cluster health cards, env tags, per-card / fleet AI inspect
- Auth & RBAC: JWT login, optional GitHub OAuth, Casbin roles; user / role / settings admin; security audit log
- Multi-cluster: import and switch clusters, local kubeconfig context import
- Overview & search: global resource search, Events stream
- Cluster resources:
- Nodes / Namespaces / CRDs
- Workloads: Pods (logs / web terminal), Deployments, StatefulSets, DaemonSets, Jobs, CronJobs, HPA, PDB
- Network: Services, Ingress, GatewayClasses, Gateways, HTTPRoutes, NetworkPolicies
- Config: ConfigMaps, Secrets, ServiceAccounts, ResourceQuotas, LimitRanges
- Storage: PV / PVC / StorageClass
- Access: Roles, RoleBindings, ClusterRoles, ClusterRoleBindings
- Observe & ops: Monitoring (Prometheus), Helm releases, API Proxy, resource YAML view / edit
- Themes / Chinese UI
Double-click app: Electron shell + embedded Go API, using your local kubeconfig (~/.kube/config or %USERPROFILE%\.kube\config).
Latest: v1.0.0-desktop.1
| Platform | Asset |
|---|---|
| Windows x64 | setup / portable |
| macOS Apple Silicon | DMG |
| Linux x64 | AppImage |
- First login:
admin/12345678(forced password change on first login) - Notes: builds are unsigned (Windows SmartScreen / macOS Gatekeeper may warn). Intel Mac DMG not yet published.
- Build: push a desktop tag (CI builds all three platforms; SQLite needs CGO on each runner):
git tag v1.0.0-desktop.1
git push origin v1.0.0-desktop.1- Install Node.js (>=20) and pnpm (>=10)
- Install Go (>=1.26)
- Have a Kubernetes cluster and configure the kubeconfig file (defaults to reading
~/.kube/config)
# Navigate to the frontend directory (monorepo path: web/)
cd web
# Install dependencies
pnpm install
# Start the development server
pnpm devVisit http://localhost:8888 to see the frontend interface.
# From the repository root
# (Optional) Update Go dependencies
go mod tidy
# Run the backend service (listens on port 8080 by default)
# Configuration files are modified in configs/config.yaml
go run cmd/server/main.go# Build frontend production package (output to web/dist)
cd web
pnpm build
# Build backend executable
cd ..
go build -o bin/cilikube cmd/server/main.go# Backend
docker run -d --name cilikube -p 8080:8080 -v ~/.kube:/root/.kube:ro ghcr.io/ciliverse/cilikube:v1.0.1
# Frontend
docker run -d --name cilikube-web -p 80:80 ghcr.io/ciliverse/cilikube-web:v1.0.1docker-compose up -dVisit http://localhost to access the interface.
- Install Helm (>=3.0)
- Have a Kubernetes cluster and configure the kubeconfig file
- Install kubectl (>=1.36.2)
# Add Helm repository
helm repo add ciliverse https://charts.cillian.website
# Update Helm repository
helm repo update
# Install CiliKube
helm install cilikube ciliverse/cilikube -n cilikube --create-namespace
# Check service status
kubectl get svc cilikube -n cilikubeClick to view historical Vue screenshots
Login Interface |
Dashboard Overview |
Navigation Menu |
Cluster Management |
Pod Management |
Web Terminal |
We welcome contributions of all forms! If you'd like to help improve CiliKube, please:
- Fork this repository
- Create your feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'feat: Add some AmazingFeature') - Please follow the Git Commit Guidelines - Push your branch to your fork (
git push origin feature/AmazingFeature) - Submit a Pull Request
Please follow the Conventional Commits specification:
feat: Add new featuresfix: Fix issues/bugsperf: Optimize performancestyle: Change the code style without affecting the running resultrefactor: Refactor coderevert: Revert changestest: Test related, does not involve changes to business codedocs: Documentation and Annotationchore: Updating dependencies/modifying scaffolding configuration, etc.workflow: Workflow Improvementsci: CICD related changestypes: Type definition changeswip: Work in progress (should generally not be merged)
- Email: cilliantech@gmail.com
- Website: https://www.cillian.website
- WeChat: 希里安
This project is licensed under the GNU Affero General Public License v3.0.


















