2024-11-07 16:18:25 +01:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
set -euC
|
|
|
|
|
2024-11-14 13:12:06 +01:00
|
|
|
################################################################################
|
|
|
|
## Constants
|
|
|
|
|
|
|
|
readonly apiurl=https://192.168.51.81:8006/api2/json
|
|
|
|
|
|
|
|
## FIXME: There seems to be a problem with file upload where the task is
|
|
|
|
## registered to `node051` no matter what node we are actually uploading to? For
|
|
|
|
## now, let us just use `node051` everywhere.
|
|
|
|
readonly node=node051
|
|
|
|
|
|
|
|
readonly tmpdir=/tmp/proxmox-provision-$RANDOM$RANDOM
|
|
|
|
mkdir $tmpdir
|
|
|
|
|
2024-11-07 16:18:25 +01:00
|
|
|
################################################################################
|
|
|
|
## Parse arguments
|
|
|
|
|
|
|
|
username=
|
|
|
|
password=
|
|
|
|
sockets=1
|
|
|
|
cores=1
|
|
|
|
memory=2048
|
2024-11-14 13:12:06 +01:00
|
|
|
vmids=
|
2024-11-07 16:18:25 +01:00
|
|
|
|
|
|
|
help () {
|
|
|
|
cat <<EOF
|
2024-11-14 13:12:06 +01:00
|
|
|
Usage: $0 [OPTION...] [ID...]
|
2024-11-07 16:18:25 +01:00
|
|
|
|
2024-11-14 13:12:06 +01:00
|
|
|
Authentication options:
|
2024-11-07 16:18:25 +01:00
|
|
|
--username STR Username, with provider (eg. niols@pve)
|
|
|
|
--password STR Password
|
|
|
|
|
|
|
|
If not provided via the command line, username and password will be looked for
|
2024-11-14 11:30:32 +01:00
|
|
|
in a '.proxmox' file in the current working directory, the username on the
|
2024-11-07 16:18:25 +01:00
|
|
|
first line, and the password on the second.
|
|
|
|
|
2024-11-14 13:12:06 +01:00
|
|
|
Other options:
|
2024-11-07 16:18:25 +01:00
|
|
|
--sockets INT Number of sockets (default: $sockets)
|
|
|
|
--cores INT Number of cores (default: $cores)
|
|
|
|
--memory INT Memory (default: $memory)
|
|
|
|
|
|
|
|
Others:
|
|
|
|
-h|-?|--help Show this help and exit
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2024-11-14 13:55:26 +01:00
|
|
|
die () { printf '\033[31m'; printf "$@"; printf '\033[0m\n'; exit 2; }
|
|
|
|
die_with_help () { printf '\033[31m'; printf "$@"; printf '\033[0m\n'; help; exit 2; }
|
2024-11-07 16:18:25 +01:00
|
|
|
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
argument=$1
|
|
|
|
shift
|
|
|
|
case $argument in
|
|
|
|
--username) readonly username=$1; shift ;;
|
|
|
|
--password) readonly password=$1; shift ;;
|
|
|
|
|
|
|
|
--sockets) sockets=$1; shift ;;
|
|
|
|
--cores) cores=$1; shift ;;
|
|
|
|
--memory) memory=$1; shift ;;
|
|
|
|
|
|
|
|
-h|-\?|--help) help; exit 0 ;;
|
2024-11-14 13:12:06 +01:00
|
|
|
|
2024-11-14 13:55:26 +01:00
|
|
|
-*) die_with_help 'Unknown argument: `%s`.' "$argument" ;;
|
2024-11-14 13:12:06 +01:00
|
|
|
|
|
|
|
*) vmids="$vmids $argument" ;;
|
2024-11-07 16:18:25 +01:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ -z "$username" ] || [ -z "$password" ]; then
|
|
|
|
if [ -f .proxmox ]; then
|
|
|
|
{ read username; read password; } < .proxmox
|
|
|
|
else
|
2024-11-14 13:55:26 +01:00
|
|
|
die_with_help 'Required: `--username` and `--password`.\n'
|
2024-11-07 16:18:25 +01:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
readonly sockets
|
|
|
|
readonly cores
|
|
|
|
readonly memory
|
|
|
|
|
2024-11-14 13:12:06 +01:00
|
|
|
## FIXME: When we figure out how to use other nodes than node051.
|
|
|
|
# if [ -z "$node" ]; then
|
|
|
|
# printf 'Picking random node...'
|
|
|
|
# proxmox GET $apiurl/nodes
|
|
|
|
# node=$(from_response .data[].node | sort -R | head -n 1)
|
|
|
|
# printf ' done. Picked `%s`.\n' "$node"
|
|
|
|
# fi
|
|
|
|
# readonly node
|
2024-11-07 16:18:25 +01:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
## Getting started
|
|
|
|
|
|
|
|
printf 'Authenticating...'
|
|
|
|
response=$(
|
|
|
|
http \
|
|
|
|
--verify no \
|
|
|
|
POST $apiurl/access/ticket \
|
|
|
|
"username=$username" \
|
|
|
|
"password=$password"
|
|
|
|
)
|
2024-11-14 13:12:06 +01:00
|
|
|
readonly ticket=$(echo "$response" | jq -r .data.ticket)
|
|
|
|
readonly csrfToken=$(echo "$response" | jq -r .data.CSRFPreventionToken)
|
2024-11-07 16:18:25 +01:00
|
|
|
printf ' done.\n'
|
|
|
|
|
2024-11-14 13:55:26 +01:00
|
|
|
acquire_lock () {
|
|
|
|
until mkdir $tmpdir/lock-$1 2>/dev/null; do sleep 1; done
|
|
|
|
}
|
|
|
|
release_lock () {
|
|
|
|
rmdir $tmpdir/lock-$1
|
|
|
|
}
|
|
|
|
|
2024-11-14 13:12:06 +01:00
|
|
|
proxmox () {
|
2024-11-14 13:55:26 +01:00
|
|
|
acquire_lock proxmox
|
2024-11-14 13:12:06 +01:00
|
|
|
http \
|
|
|
|
--form \
|
|
|
|
--verify no \
|
2024-11-14 13:55:26 +01:00
|
|
|
--ignore-stdin \
|
2024-11-14 13:12:06 +01:00
|
|
|
"$@" \
|
|
|
|
"Cookie:PVEAuthCookie=$ticket" \
|
|
|
|
"CSRFPreventionToken:$csrfToken"
|
2024-11-14 13:55:26 +01:00
|
|
|
release_lock proxmox
|
2024-11-07 16:18:25 +01:00
|
|
|
}
|
|
|
|
|
2024-11-14 13:12:06 +01:00
|
|
|
## Synchronous variant for when the `proxmox` function would just respond an
|
|
|
|
## UPID in the `data` JSON field.
|
2024-11-14 13:55:26 +01:00
|
|
|
proxmox_sync () (
|
2024-11-14 13:12:06 +01:00
|
|
|
response=$(proxmox "$@")
|
|
|
|
upid=$(echo "$response" | jq -r .data)
|
2024-11-14 13:55:26 +01:00
|
|
|
|
2024-11-07 16:18:25 +01:00
|
|
|
while :; do
|
2024-11-14 13:12:06 +01:00
|
|
|
response=$(proxmox GET $apiurl/nodes/$node/tasks/$upid/status)
|
|
|
|
status=$(echo "$response" | jq -r .data.status)
|
2024-11-14 13:55:26 +01:00
|
|
|
|
2024-11-07 16:18:25 +01:00
|
|
|
case $status in
|
2024-11-14 13:12:06 +01:00
|
|
|
running) sleep 1 ;;
|
2024-11-07 16:18:25 +01:00
|
|
|
stopped) break ;;
|
2024-11-14 13:12:06 +01:00
|
|
|
*) die 'unexpected status: `%s`' "$status" ;;
|
2024-11-07 16:18:25 +01:00
|
|
|
esac
|
|
|
|
done
|
2024-11-14 13:55:26 +01:00
|
|
|
)
|
2024-11-07 16:18:25 +01:00
|
|
|
|
2024-11-14 13:12:06 +01:00
|
|
|
################################################################################
|
|
|
|
## Build ISO
|
|
|
|
|
|
|
|
build_iso () {
|
2024-11-14 13:55:26 +01:00
|
|
|
acquire_lock build
|
2024-11-14 13:12:06 +01:00
|
|
|
printf 'Building ISO for VM %d...\n' $1
|
|
|
|
|
|
|
|
nix build \
|
|
|
|
.#isoInstallers.provisioning.fedi$1 \
|
|
|
|
--log-format raw --quiet \
|
|
|
|
--out-link $tmpdir/installer-fedi$1
|
|
|
|
|
|
|
|
ln -sf $tmpdir/installer-fedi$1/iso/installer.iso $tmpdir/installer-fedi$1.iso
|
|
|
|
|
|
|
|
printf 'done building ISO for VM %d.\n' $1
|
2024-11-14 13:55:26 +01:00
|
|
|
release_lock build
|
2024-11-14 13:12:06 +01:00
|
|
|
}
|
|
|
|
|
2024-11-07 16:18:25 +01:00
|
|
|
################################################################################
|
|
|
|
## Upload ISO
|
|
|
|
|
2024-11-14 13:12:06 +01:00
|
|
|
upload_iso () {
|
2024-11-14 13:55:26 +01:00
|
|
|
acquire_lock upload
|
2024-11-14 13:12:06 +01:00
|
|
|
printf 'Uploading ISO for VM %d...\n' $1
|
|
|
|
|
|
|
|
proxmox_sync POST $apiurl/nodes/$node/storage/local/upload \
|
|
|
|
filename@$tmpdir/installer-fedi$1.iso \
|
|
|
|
content==iso
|
|
|
|
|
|
|
|
printf 'done uploading ISO for VM %d.\n' $1
|
2024-11-14 13:55:26 +01:00
|
|
|
release_lock upload
|
2024-11-14 13:12:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
## Remove ISO
|
|
|
|
|
|
|
|
remove_iso () {
|
|
|
|
printf 'Removing ISO for VM %d... unsupported for now. (FIXME)\n' $1
|
|
|
|
}
|
2024-11-07 16:18:25 +01:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
## Create VM
|
|
|
|
|
2024-11-14 13:12:06 +01:00
|
|
|
create_vm () {
|
|
|
|
printf 'Creating VM %d...\n' $1
|
|
|
|
|
|
|
|
proxmox_sync POST $apiurl/nodes/$node/qemu \
|
|
|
|
\
|
|
|
|
vmid==$1 \
|
|
|
|
name=="fedi$1" \
|
|
|
|
pool==Fediversity \
|
|
|
|
\
|
|
|
|
ide2=="local:iso/installer-fedi$1.iso,media=cdrom" \
|
|
|
|
ostype==l26 \
|
|
|
|
\
|
|
|
|
bios==ovmf \
|
|
|
|
efidisk0=='linstor_storage:1,efitype=4m' \
|
|
|
|
agent==1 \
|
|
|
|
\
|
|
|
|
scsihw==virtio-scsi-single \
|
|
|
|
scsi0=='linstor_storage:32,discard=on,ssd=on,iothread=on' \
|
|
|
|
\
|
|
|
|
sockets==$sockets \
|
|
|
|
cores==$cores \
|
|
|
|
cpu==x86-64-v2-AES \
|
|
|
|
numa==1 \
|
|
|
|
\
|
|
|
|
memory==$memory \
|
|
|
|
\
|
|
|
|
net0=='virtio,bridge=vnet1306'
|
|
|
|
|
|
|
|
printf 'done creating VM %d.\n' $1
|
|
|
|
}
|
2024-11-07 16:18:25 +01:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
## Install VM
|
|
|
|
|
2024-11-14 13:55:26 +01:00
|
|
|
install_vm () (
|
2024-11-14 13:12:06 +01:00
|
|
|
printf 'Installing VM %d...\n' $1
|
2024-11-07 16:18:25 +01:00
|
|
|
|
2024-11-14 13:12:06 +01:00
|
|
|
proxmox_sync POST $apiurl/nodes/$node/qemu/$1/status/start
|
2024-11-07 16:18:25 +01:00
|
|
|
|
2024-11-14 13:12:06 +01:00
|
|
|
while :; do
|
|
|
|
response=$(proxmox GET $apiurl/nodes/$node/qemu/$1/status/current)
|
|
|
|
status=$(echo "$response" | jq -r .data.status)
|
|
|
|
case $status in
|
|
|
|
running) sleep 1 ;;
|
|
|
|
stopped) break ;;
|
|
|
|
*) printf ' unexpected status: `%s`\n' "$status"; exit 2 ;;
|
|
|
|
esac
|
|
|
|
done
|
2024-11-07 16:18:25 +01:00
|
|
|
|
2024-11-14 13:12:06 +01:00
|
|
|
printf 'done installing VM %d.\n' $1
|
2024-11-14 13:55:26 +01:00
|
|
|
)
|
2024-11-07 16:18:25 +01:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
## Start VM
|
|
|
|
|
2024-11-14 13:12:06 +01:00
|
|
|
start_vm () {
|
|
|
|
printf 'Starting VM %d...\n' $1
|
2024-11-07 16:18:25 +01:00
|
|
|
|
2024-11-14 13:12:06 +01:00
|
|
|
proxmox_sync POST $apiurl/nodes/$node/qemu/$1/config \
|
|
|
|
ide2=='none,media=cdrom' \
|
|
|
|
net0=='virtio,bridge=vnet1305'
|
2024-11-07 16:18:25 +01:00
|
|
|
|
2024-11-14 13:12:06 +01:00
|
|
|
proxmox_sync POST $apiurl/nodes/$node/qemu/$1/status/start
|
2024-11-07 16:18:25 +01:00
|
|
|
|
2024-11-14 13:12:06 +01:00
|
|
|
printf 'done starting VM %d.\n' $1
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
## Main loop
|
|
|
|
|
|
|
|
printf 'Provisioning VMs%s with:\n' "$vmids"
|
|
|
|
printf ' sockets: %d\n' $sockets
|
|
|
|
printf ' cores: %d\n' $cores
|
|
|
|
printf ' memory: %d\n' $memory
|
|
|
|
|
|
|
|
provision_vm () {
|
|
|
|
build_iso $1
|
|
|
|
upload_iso $1
|
|
|
|
create_vm $1
|
|
|
|
install_vm $1
|
|
|
|
start_vm $1
|
|
|
|
remove_iso $1
|
|
|
|
}
|
|
|
|
|
|
|
|
for vmid in $vmids; do
|
2024-11-14 13:55:26 +01:00
|
|
|
provision_vm $vmid &
|
2024-11-14 13:12:06 +01:00
|
|
|
done
|
2024-11-14 13:55:26 +01:00
|
|
|
wait
|
2024-11-14 13:12:06 +01:00
|
|
|
|
|
|
|
printf 'done provisioning VMs%s.\n' "$vmids"
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
## Cleanup
|
|
|
|
|
|
|
|
rm -Rf $tmpdir
|