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.
11 lines
230 B
Bash
Executable File
11 lines
230 B
Bash
Executable File
#!/bin/bash
|
|
set -e -x
|
|
|
|
source $(dirname $0)/version.sh
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
images=$(cat scripts/airgap/image-list.txt)
|
|
xargs -n1 docker pull <<< "${images}"
|
|
docker save ${images} -o dist/artifacts/k3s-airgap-images-${ARCH}.tar
|