Skip to content

Commit

Permalink
Merge pull request #1549 from erikwilson/package-airgap-image-list
Browse files Browse the repository at this point in the history
Add airgap image list to release artifacts
  • Loading branch information
erikwilson authored Mar 17, 2020
2 parents 53a9c56 + 2835c76 commit e3a3b82
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/package-airgap
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ cd $(dirname $0)/..

. ./scripts/version.sh

images=$(cat scripts/airgap/image-list.txt)
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

0 comments on commit e3a3b82

Please sign in to comment.