fix(recipe): matchbox updating install script

This commit is contained in:
Philippe Caseiro 2022-12-27 15:26:03 +01:00
parent d2c161e9bd
commit 632c4cd517
3 changed files with 43 additions and 9 deletions

View File

@ -49,6 +49,10 @@ locals {
name = "kubectl"
action = "install"
}
gpg = {
name = "gpg"
action = "install"
}
}
Vars = {
PXE = {

View File

@ -6,25 +6,55 @@ BIN="matchbox"
FILENAME="matchbox-v${VERSION}-linux-${ARCH}.tar.gz"
URL="https://github.com/poseidon/matchbox/releases/download/v${VERSION}/${FILENAME}"
MATCHBOX_DIR="/var/lib/matchbox"
ASSETS_DIR="${MATCHBOX_DIR}/assets"
ASSETS_DIR="${MATCHBOX_DIR}/assets/"
MATCHBOX_USER="matchbox"
FL_VERSIONS="current 3374.2.0"
echo "Downloading matchbox"
cd /tmp
wget -q --show-progress "${URL}"
tar -xzvf "${FILENAME}"
cd ./matchbox-v${VERSION}-linux-${ARCH}
echo "Installing matchbox"
cd /tmp
wget "${URL}"
tar -xzvf "${FILENAME}"
cd "matchbox-v${VERSION}-linux-${ARCH}"
cp ${BIN} /usr/local/bin
echo "Installing get-flatcar"
cp ./scripts/get-flatcar /usr/local/bin
./scripts/get-flatcar stable current "${ASSETS_DIR}"
./scripts/get-flatcar stable 3374.2.0 "${ASSETS_DIR}"
chmod +x /usr/local/bin/get-flatcar
useradd -U "${MATCHBOX_USER}"
mkdir -p "${ASSETS_DIR}"
mv ./examples/assets/flatcar "${ASSETS_DIR}"
chown -R "${MATCHBOX_USER}:${MATCHBOX_USER}" "${MATCHBOX_DIR}"
chown -R "${MATCHBOX_USER}:${MATCHBOX_USER}" "${ASSETS_DIR}"
tout=30
item=1
echo "Provisionning matchbox with flatcar images"
echo " * Current stable image (try 1)"
for version in ${FL_VERSIONS}; do
while ! bash -x /usr/local/bin/get-flatcar stable ${version} ${ASSETS_DIR}; do
sleep 1
echo " * ${version} stable image (try ${item})"
if [ "${tout}" -eq "${item}" ]; then
break
exit 1
fi
item=$((item+1))
done
done
echo " * 3374.2.0 stable image (try 1)"
get-flatcar stable 3374.2.0 "${ASSETS_DIR}"
if [ "${?}" -ne 0 ]; then
sleep 3
echo " * 3374.2.0 stable image (try 2)"
get-flatcar stable 3374.2.0 "${ASSETS_DIR}"
fi
chown -R "${MATCHBOX_USER}:${MATCHBOX_USER}" "${ASSETS_DIR}"
ls -lhaR ${ASSETS_DIR}
cp -rp ./scripts/tls /root
exit "${?}"

View File

@ -14,7 +14,7 @@ CONTEXT = [
SSH_PUBLIC_KEY = "$USER[SSH_PUBLIC_KEY]",
TOKEN = "YES" ]
CPU = "0.2"
DESCRIPTION = "K3S Ready VM"
DESCRIPTION = "Matchbox Ready VM"
DISK = [
IMAGE = "<%= image_name %>",
IMAGE_UNAME = "<%= user %>",