project/create_lxc_base.sh

66 lines
2.5 KiB
Bash
Raw Normal View History

2023-03-06 19:30:56 +00:00
#!/bin/bash
set -eu
2023-03-06 19:30:56 +00:00
cd "$(dirname "$0")"
2023-03-09 14:53:07 +00:00
bash -c "./stub_lxc_profile.sh --lxd-hostname=$BASE_IMAGE_VM_NAME"
2023-03-06 19:30:56 +00:00
# let's download our base image.
if ! lxc image list --format csv --columns l | grep -q "$UBUNTU_BASE_IMAGE_NAME"; then
# if the image doesn't exist, download it from Ubuntu's image server
# TODO see if we can fetch this file from a more censorship-resistant source, e.g., ipfs
# we don't really need to cache this locally since it gets continually updated upstream.
2023-03-08 22:12:36 +00:00
lxc image copy "images:$BASE_LXC_IMAGE" "$REMOTE_NAME": --alias "$UBUNTU_BASE_IMAGE_NAME" --public --vm --auto-update
2023-03-06 19:30:56 +00:00
fi
# If the lxc VM does exist, then we will delete it (so we can start fresh)
2023-03-08 22:12:36 +00:00
if lxc list --format csv -q | grep -q "$UBUNTU_BASE_IMAGE_NAME"; then
2023-03-06 19:30:56 +00:00
# if there's no snapshot, we dispense with the old image and try again.
2023-03-08 22:12:36 +00:00
if ! lxc info "$BASE_IMAGE_VM_NAME" | grep -q "$UBUNTU_BASE_IMAGE_NAME"; then
2023-03-06 19:30:56 +00:00
lxc delete "$BASE_IMAGE_VM_NAME" --force
ssh-keygen -f "$SSH_HOME/known_hosts" -R "$BASE_IMAGE_VM_NAME"
fi
else
# the base image is ubuntu:22.04.
lxc init --profile="$BASE_IMAGE_VM_NAME" "$UBUNTU_BASE_IMAGE_NAME" "$BASE_IMAGE_VM_NAME" --vm
# TODO move this sovereign-stack-base construction VM to separate dedicated IP
lxc config set "$BASE_IMAGE_VM_NAME"
2023-03-16 19:48:28 +00:00
# for CHAIN in mainnet testnet; do
# for DATA in blocks chainstate; do
# lxc storage volume attach ss-base "$CHAIN-$DATA" "$BASE_IMAGE_VM_NAME" "/home/ubuntu/$CHAIN/$DATA"
# done
# done
2023-03-06 19:30:56 +00:00
lxc start "$BASE_IMAGE_VM_NAME"
2023-03-08 22:12:36 +00:00
sleep 15
while lxc exec "$BASE_IMAGE_VM_NAME" -- [ ! -f /var/lib/cloud/instance/boot-finished ]; do
sleep 1
done
2023-03-06 19:30:56 +00:00
# ensure the ssh service is listening at localhost
2023-03-08 22:12:36 +00:00
lxc exec "$BASE_IMAGE_VM_NAME" -- wait-for-it -t 100 127.0.0.1:22
2023-03-06 19:30:56 +00:00
2023-03-08 22:12:36 +00:00
sleep 3
2023-03-06 19:30:56 +00:00
2023-03-16 19:48:28 +00:00
# for CHAIN in testnet mainnet; do
# for DATA in blocks chainstate; do
# lxc file push --recursive --project=default "/home/ubuntu/.ss/cache/bitcoin/$CHAIN/$DATA/" "$BASE_IMAGE_VM_NAME/home/ubuntu/$CHAIN/$DATA/"
# done
# done
2023-03-06 19:30:56 +00:00
# stop the VM and get a snapshot.
lxc stop "$BASE_IMAGE_VM_NAME"
2023-03-08 22:12:36 +00:00
lxc snapshot "$BASE_IMAGE_VM_NAME" "$UBUNTU_BASE_IMAGE_NAME"
2023-03-06 19:30:56 +00:00
fi
2023-03-06 20:26:08 +00:00
2023-03-16 20:42:58 +00:00
echo "INFO: Publishing '$BASE_IMAGE_VM_NAME' as image '$DOCKER_BASE_IMAGE_NAME'. Please wait."
2023-03-08 22:12:36 +00:00
lxc publish --public "$BASE_IMAGE_VM_NAME/$UBUNTU_BASE_IMAGE_NAME" --project=default --alias="$DOCKER_BASE_IMAGE_NAME"
2023-03-16 19:48:28 +00:00
2023-03-16 20:42:58 +00:00
echo "INFO: Success! We can now delete the base image."
2023-03-16 19:48:28 +00:00
lxc delete -f "$BASE_IMAGE_VM_NAME"