K10s is an open-source project designed to provide a comprehensive visual and hierarchical representation of Kubernetes clusters, including superclusters (clusters of clusters). This tool aims to give users an intuitive understanding of how their clusters operate, manage resources, and interconnect with underlying components.
If you find this project helpful or interesting, feel free to ⭐️ star this repository on GitHub. Your support helps us grow and reach more users in the community!
- Visualize the full hierarchy of your Kubernetes ecosystem, from superclusters to individual pools, nodes and pods...
- Gain real-time insights into cluster performance and management.
- Simplify complex Kubernetes structures into an understandable format for developers and administrators alike.
To ensure proper use and contribution, please refer to the following documentation:
- 📜 LICENSE: Details on permissions and limitations for using the software.
- 🔒 SECURITY: Guidelines for identifying and reporting vulnerabilities.
- 🤝 CONTRIBUTING: Instructions for contributing to the project and submitting pull requests.
- 📝 CODE OF CONDUCT: Guidelines for participating in the community and maintaining a respectful environment.
The project's visual identity is defined by the following colors:
:root[data-theme="dark"] {
--text: #ecf1f4;
--background: #040c10;
--primary: #004b7a;
--secondary: #3c3154;
--tertiary: #262b2e;
--quaternary: #1f2326;
--accent: #5f4270;
}
:root[data-theme="light"] {
--text: #0b1013;
--background: #eff7fb;
--primary: #85d0ff;
--secondary: #b6abce;
--tertiary: #e8eff3;
--quaternary: #dedfed;
--accent: #ac8fbd;
}
- Step 1: Make a secret with the username and password of the application:
kubectl create secret generic k10s-secret -n k10s-namespaces --from-literal=username=admin --from-literal=password=admin
- Step 2: Deploy the application:
kubectl apply -f https://raw.githubusercontent.com/EliasDeHondt/K10s/refs/heads/main/Kubernetes/k10s.yaml
- Step 3: Get the external IP of the application:
kubectl get svc -n k10s-namespaces
- If you want to delete the application:
kubectl delete -f https://raw.githubusercontent.com/EliasDeHondt/K10s/refs/heads/main/Kubernetes/k10s.yaml
- If you want to delete the secret:
kubectl delete secret k10s-secret -n k10s-namespaces