https://github.com/030/k8s-image-determiner
Determine images in K8s pods and cronjobs.
https://github.com/030/k8s-image-determiner
Last synced: 5 months ago
JSON representation
Determine images in K8s pods and cronjobs.
- Host: GitHub
- URL: https://github.com/030/k8s-image-determiner
- Owner: 030
- License: mit
- Created: 2023-11-18T13:26:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-26T14:23:48.000Z (over 1 year ago)
- Last Synced: 2025-06-13T23:06:04.316Z (about 1 year ago)
- Language: Python
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# k8s-image-determiner
```bash
kind_version=0.23.0; if ! ~/go/bin/kind --version | grep $kind_version; then go install sigs.k8s.io/kind@v${kind_version}; fi
```
```bash
~/go/bin/kind create cluster --image kindest/node:v1.30.2
```
Install [kubectl](https://kubernetes.io/docs/tasks/tools/).
```bash
kubectl get po --all-namespaces
```
```bash
python3 main.py
```
```bash
~/go/bin/kind delete cluster
```