mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-11-25 10:45:15 +00:00
17 lines
343 B
Bash
Executable File
17 lines
343 B
Bash
Executable File
#!/bin/bash
|
|
|
|
dest="./images"
|
|
version="1.5.5"
|
|
url=https://github.com/siderolabs/talos/releases/download/v${version}/
|
|
|
|
for arch in amd64 arm64
|
|
do
|
|
file=oracle-${arch}.qcow2.xz
|
|
|
|
echo "Downloading ${file} to ${dest}/${file}"
|
|
curl -L ${url}/${file} -o ${dest}/${file}
|
|
echo "Extracting: ${dest}/${file}"
|
|
xz -df ${dest}/${file}
|
|
echo
|
|
done
|