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 cilliantech.
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 enterprise-grade, open-source Kubernetes multi-cluster management platform built with modern web technologies including Vue3, TypeScript, Go, and Gin. The platform provides an intuitive, streamlined interface for comprehensive Kubernetes resource management while maintaining extensibility for custom requirements. CiliKube serves as an ideal foundation for organizations seeking efficient cluster operations and developers learning cloud-native technologies.
CiliKube distinguishes itself from complex enterprise solutions by prioritizing simplicity and usability without sacrificing functionality:
- Streamlined Interface: Provides an intuitive, clean interface for essential Kubernetes resource management operations.
- Developer-Centric Design: Built with modern development practices and clean architecture, making it an excellent reference for Vue3/Go web development and Kubernetes API integration.
- Extensible Architecture: Designed with modularity in mind, enabling seamless integration of custom features and workflows.
- Frontend Developers: Seeking hands-on experience with Vue3 + TypeScript + Element Plus ecosystem
- Backend Developers: Learning Go + Gin web development and microservices architecture
- Cloud-Native Engineers: Exploring Kubernetes API integration and client-go library implementation
- DevOps Teams: Requiring a lightweight, customizable Kubernetes management interface
- Educational Institutions: Teaching modern web development and cloud-native technologies
CiliKube emerged from a comprehensive full-stack development learning initiative, combining practical web development skills with deep Kubernetes expertise. The project represents both a technical achievement and an educational resource, designed to serve as a gateway for developers entering the cloud-native ecosystem. Our mission extends beyond providing a management tool—we aim to foster a community of learners and contributors in the open-source landscape.
- Online Demo: http://cilikubedemo.cillian.website
- Demo Credentials:
- Username: admin
- Password: 12345678
- Official Documentation: cilikube.cillian.website
CiliKube leverages industry-standard technologies and frameworks to ensure reliability, maintainability, and developer productivity.
System Requirements:
- Node.js >= 18.0.0 (Developed and tested with v22.14.0)
- Go >= 1.20 (Developed and tested with v1.24.2)
- PNPM >= 8.x (Package management)
Frontend Architecture:
- Core:
Vue3TypeScriptViteElement Plus - State Management:
PiniaVue Router - HTTP Client:
Axios - Styling:
UnoCSSScss - Code Quality:
ESLintPrettier - Built upon the robust v3-admin-vite template by un-pany.
Backend Architecture:
- Framework:
GoGin - Kubernetes Integration:
client-go - Authentication:
JWT - Real-time Communication:
Gorilla WebSocket - Configuration:
Viper - Logging:
Zap Logger
- Enterprise Authentication: Secure JWT-based authentication and role-based authorization
- Comprehensive Dashboard: Real-time cluster metrics and resource utilization overview
- Multi-Cluster Operations: Centralized management across multiple Kubernetes environments
- Resource Management Suite:
- Infrastructure: Node monitoring and management
- Workspaces: Namespace lifecycle management
- Workloads: Complete Pod lifecycle with integrated logging and terminal access
- Storage: Persistent Volume and Persistent Volume Claim administration
- Configuration: Secure ConfigMap and Secret management
- Networking: Service discovery and Ingress configuration
- Deployments: Advanced workload management (Deployment/StatefulSet/DaemonSet)
- User Experience: Customizable themes and comprehensive internationalization support
Frontend
- Login Page
- Basic Layout (Sidebar, Topbar, Tabs)
- Notifications
- Workload Resource Pages (Deployment, StatefulSet, DaemonSet, etc.)
- Configuration Management Pages (ConfigMap, Secret)
- Network Resource Pages (Service, Ingress)
- Storage Resource Pages (StorageClass, PV, PVC)
- Access Control Pages (RBAC - ServiceAccount, Role, ClusterRoleBinding, etc.)
- Log Viewer Enhancements
- Web Shell Terminal Integration
- Events Viewer
- Basic CRD Resource Management
- Monitoring Integration (Display data from Prometheus/Grafana)
Backend
- Kubernetes Client Initialization
- Basic Routing Setup (Gin)
- CORS Configuration
- JWT Authentication Middleware
- WebSocket Endpoint (for Logs and Web Shell)
- Multi-cluster Support
- Node Resource API
- Pod Resource API (List, Get, Delete, Logs, Exec)
- PV/PVC Resource API
- Namespace Resource API
- Deployment / StatefulSet / DaemonSet Resource API
- Service / Ingress Resource API
- ConfigMap / Secret Resource API
- RBAC Related Resource API
- Event Resource API
- Install Node.js (>=18) and pnpm
- Install Go (>=1.20)
- Have a Kubernetes cluster and configure the kubeconfig file (defaults to reading
~/.kube/config)
# Navigate to the frontend directory
cd cilikube-web
# Install dependencies
pnpm install
# Start the development server
pnpm devVisit http://localhost:8888 to see the frontend interface.
# Navigate to the backend directory
cd cilikube
# (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 cilikube-web/dist)
cd cilikube-web
pnpm build
# Build backend executable
cd ../cilikube
go build -o cilikube cmd/server/main.go# Backend
docker run -d --name cilikube -p 8080:8080 -v ~/.kube:/root/.kube:ro cilliantech/cilikube:latest
# Frontend
docker run -d --name cilikube-web -p 80:80 cilliantech/cilikube-web:latestdocker-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.20)
# Add Helm repository
helm repo add cilikube https://charts.cillian.website
# Update Helm repository
helm repo update
# Install CiliKube
helm install cilikube cilikube/cilikube -n cilikube --create-namespace
# Check service status
kubectl get svc cilikube -n cilikubeClick to view 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: [email protected]
- Website: https://www.cillian.website
- WeChat: 希里安
This project is open-sourced under the Apache 2.0 License







