mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
eabc82c724
To please my OCD, and remove my editor flashing boxes, I am removing trailing whitespaces. They have no purpose in life.
13 lines
319 B
Bash
Executable File
13 lines
319 B
Bash
Executable File
#!/bin/bash
|
|
set -e -x
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
. ./scripts/version.sh
|
|
|
|
airgap_image_file='scripts/airgap/image-list.txt'
|
|
images=$(cat "${airgap_image_file}")
|
|
xargs -n1 docker pull <<< "${images}"
|
|
docker save ${images} -o dist/artifacts/k3s-airgap-images-${ARCH}.tar
|
|
cp "${airgap_image_file}" dist/artifacts/k3s-images.txt
|