mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
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
|