├── .gitignore
├── README.md
├── canIdo.sh
├── countPodsAndContainerPerNodeCSV.sh
├── findEmptyNamespaces.sh
├── getNodesLoadCSV.sh
├── getPodsLoad.sh
├── getPodsTopCSV.sh
├── getResourcesCSV.sh
├── getRestartingPods.sh
├── podReady.sh
├── runCommandOnPods.sh
└── yaml
├── kind-config.yaml
├── memory.yaml
├── metrics-server-patch.yaml
├── podWithHostFS.yaml
├── podWithTools.yaml
├── podmanPod.yaml
└── superPod.yaml
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea
2 | resources.csv*
3 | top-*
4 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Kubernetes Scripts
2 | A collection of scripts and commands for various tasks in [Kubernetes](https://kubernetes.io/).
3 | These were all written during my work with Kubernetes on various project. Enjoy and share. Contributions are more than welcome!
4 |
5 | ## Usage
6 | Each script has a `usage` function. See usage with
7 | ```shell script
8 |