mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
4db415c1db
The list is the same across architectures, and is validated against the list in git as part of CI... so there's no reason to be pushing it from every pipeline. It's also causing conflicts when multiple pipelines try to upload it at the same time. Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
15 lines
353 B
Bash
Executable File
15 lines
353 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
|
|
if [ ${ARCH} = amd64 ]; then
|
|
cp "${airgap_image_file}" dist/artifacts/k3s-images.txt
|
|
fi
|