An open API service indexing awesome lists of open source software.

https://github.com/fpapon/kcheat


https://github.com/fpapon/kcheat

Last synced: 3 months ago
JSON representation

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