mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
40172dc508
Generate airgap artifacts from an images list for each architecture.
9 lines
152 B
Bash
Executable File
9 lines
152 B
Bash
Executable File
#!/bin/bash
|
|
set -e -x
|
|
|
|
cd $(dirname $0)
|
|
|
|
k3s crictl images -o json \
|
|
| jq -r '.images[].repoTags[0] | select(. != null)' \
|
|
| tee image-list.txt
|