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.
13 lines
137 B
Bash
Executable File
13 lines
137 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
if [ ! -e ../bin/containerd ]; then
|
|
./build
|
|
fi
|
|
|
|
./package-cli
|
|
./package-image
|
|
./package-airgap
|