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

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.

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
```