This commit is contained in:
Philippe Caseiro 2023-01-04 10:57:03 +01:00
parent 7c8b20f2ce
commit 73f3fe3550
2 changed files with 21 additions and 10 deletions

View File

@ -89,6 +89,11 @@ locals {
type = "auto"
enabled = true
}
local = {
name = "local"
type = "auto"
enabled = true
}
}
}

View File

@ -4,16 +4,22 @@ FL_VERSIONS="current 3374.2.0"
MATCHBOX_DIR="/var/lib/matchbox"
ASSETS_DIR="${MATCHBOX_DIR}/assets/"
GPG_FNAME="Flatcar_Image_Signing_Key.asc"
GPG_KEYS_URL="https://www.flatcar.org/security/image-signing-key/"
cd /tmp
curl -L -O ${GPG_KEYS_URL}/${GPG_FNAME}
gpg --import --keyid-format LONG ${GPG_FNAME}
cd -
echo "Provisionning matchbox with flatcar images"
echo " * Current stable image (try 1)"
tout=30
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
for i in $(seq 1 ${tout});do
echo " * ${FL_VERSIONS} stable image (try ${i})"
/usr/local/bin/get-flatcar stable ${version} ${ASSETS_DIR}
if [[ "${?}" -eq 0 ]]; then
break
fi
item=$((item+1))
done
done
done
done