9 lines
234 B
Markdown
9 lines
234 B
Markdown
|
Download / Update new images
|
||
|
|
||
|
|
||
|
## Helper
|
||
|
Get all images from kubernetes
|
||
|
```bash
|
||
|
kubectl get pods --all-namespaces -o jsonpath="{.items[*].spec['initContainers', 'containers'][*].image}" | tr -s '[[:space:]]' '\n' | sort | uniq -c
|
||
|
```
|