mirror of https://github.com/k3s-io/k3s
9 lines
152 B
Bash
9 lines
152 B
Bash
|
#!/bin/bash
|
||
|
set -e -x
|
||
|
|
||
|
cd $(dirname $0)
|
||
|
|
||
|
k3s crictl images -o json \
|
||
|
| jq -r '.images[].repoTags[0] | select(. != null)' \
|
||
|
| tee image-list.txt
|