https://github.com/fpapon/kcheat
https://github.com/fpapon/kcheat
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fpapon/kcheat
- Owner: fpapon
- License: apache-2.0
- Created: 2024-11-19T07:40:31.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-12-19T14:31:04.000Z (6 months ago)
- Last Synced: 2025-01-25T06:26:03.212Z (4 months ago)
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= Kubernetes Cheat Sheet
== Clean zombie pods
If you have a disk pressure on a node, you can try to clean up all zombie pods:
[source, bash]
----
kubectl get pods --all-namespaces | egrep -i 'Evicted|Terminated|ContainerStatusUn|Error' | awk '{print $2 " --namespace=" $1}' | xargs kubectl delete pod --force=true --wait=false --grace-period=0
----== Kubernetes specifications explorer
https://kubespec.dev/
== Tools
=== Bundlebee
Bundlebee is a k8s package manager. You write the manifest descriptor files in JSON format with templating engine. It also provide an Apache Maven plugin to easily integration in CI/CD platform. No need to install a specific package repository, you can store the descriptor files in a git repository or a Maven repository if you want to use coordinates with versions.
https://www.yupiik.io/bundlebee