2022-06-22 17:38:11 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-03-09 14:58:56 +00:00
|
|
|
set -e
|
2022-07-27 16:38:33 +00:00
|
|
|
cd "$(dirname "$0")"
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2022-08-15 13:37:13 +00:00
|
|
|
# This script is meant to be executed on the management machine.
|
|
|
|
# it reaches out to an SSH endpoint and provisions that machine
|
|
|
|
# to use LXD.
|
2022-06-22 17:38:11 +00:00
|
|
|
|
|
|
|
DATA_PLANE_MACVLAN_INTERFACE=
|
2023-03-02 14:46:17 +00:00
|
|
|
DISK_TO_USE=
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2023-03-09 14:55:40 +00:00
|
|
|
# override the remote name.
|
|
|
|
REMOTE_NAME="${1:-}"
|
|
|
|
if [ -z "$REMOTE_NAME" ]; then
|
|
|
|
echo "ERROR: The remote name was not provided. Syntax is: 'ss-remote REMOTE_NAME SSH_HOST_FQDN'"
|
|
|
|
echo " for example: 'ss-remote dev host01.domain.tld"
|
2022-10-10 00:35:02 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2022-10-10 00:35:02 +00:00
|
|
|
#shellcheck disable=SC1091
|
2023-02-01 19:44:05 +00:00
|
|
|
source ../defaults.sh
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2023-03-09 14:55:40 +00:00
|
|
|
export REMOTE_PATH="$REMOTES_DIR/$REMOTE_NAME"
|
2023-03-13 17:40:47 +00:00
|
|
|
REMOTE_DEFINITION="$REMOTE_PATH/remote.conf"
|
2023-03-09 14:55:40 +00:00
|
|
|
export REMOTE_DEFINITION="$REMOTE_DEFINITION"
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2023-03-09 14:55:40 +00:00
|
|
|
mkdir -p "$REMOTE_PATH"
|
|
|
|
if [ ! -f "$REMOTE_DEFINITION" ]; then
|
2023-03-13 17:40:47 +00:00
|
|
|
# stub out a remote.conf.
|
2023-03-09 14:55:40 +00:00
|
|
|
cat >"$REMOTE_DEFINITION" <<EOL
|
2023-03-13 17:40:47 +00:00
|
|
|
# https://www.sovereign-stack.org/ss-remote
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2023-03-13 17:40:47 +00:00
|
|
|
LXD_REMOTE_PASSWORD="$(gpg --gen-random --armor 1 14)"
|
|
|
|
DEPLOYMENT_STRING="(dev|regtest),(staging|testnet)"
|
|
|
|
# REGISTRY_URL=http://registry.domain.tld:5000
|
2022-06-22 17:38:11 +00:00
|
|
|
|
|
|
|
EOL
|
|
|
|
|
2023-03-09 14:55:40 +00:00
|
|
|
chmod 0744 "$REMOTE_DEFINITION"
|
|
|
|
echo "We stubbed out a '$REMOTE_DEFINITION' file for you."
|
|
|
|
echo "Use this file to customize your remote deployment;"
|
2023-03-13 17:40:47 +00:00
|
|
|
echo "Check out 'https://www.sovereign-stack.org/ss-remote' for more information."
|
2022-10-10 00:35:02 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2023-03-09 14:55:40 +00:00
|
|
|
source "$REMOTE_DEFINITION"
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2023-03-09 14:55:40 +00:00
|
|
|
if ! lxc remote list | grep -q "$REMOTE_NAME"; then
|
2022-10-10 00:35:02 +00:00
|
|
|
FQDN="${2:-}"
|
2023-02-01 19:44:05 +00:00
|
|
|
|
|
|
|
if [ -z "$FQDN" ]; then
|
2023-03-09 14:55:40 +00:00
|
|
|
echo "ERROR: You MUST provide the FQDN of the remote host."
|
2023-02-01 19:44:05 +00:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2022-10-10 00:35:02 +00:00
|
|
|
shift
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2022-10-10 00:35:02 +00:00
|
|
|
if [ -z "$FQDN" ]; then
|
2023-03-09 14:55:40 +00:00
|
|
|
echo "ERROR: The Fully Qualified Domain Name of the new remote member was not set."
|
2022-10-10 00:35:02 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2022-10-10 00:35:02 +00:00
|
|
|
# let's check to ensure we have SSH access to the specified host.
|
|
|
|
if ! wait-for-it -t 5 "$FQDN:22"; then
|
|
|
|
echo "ERROR: We can't get an SSH connection to '$FQDN:22'. Ensure you have the host set up correctly."
|
|
|
|
exit 1
|
|
|
|
fi
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2022-10-10 00:35:02 +00:00
|
|
|
# grab any modifications from the command line.
|
|
|
|
for i in "$@"; do
|
|
|
|
case $i in
|
|
|
|
--data-plane-interface=*)
|
|
|
|
DATA_PLANE_MACVLAN_INTERFACE="${i#*=}"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--disk=*)
|
|
|
|
DISK_TO_USE="${i#*=}"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
*)
|
2022-08-15 13:37:13 +00:00
|
|
|
|
2022-10-10 00:35:02 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2023-03-03 13:59:52 +00:00
|
|
|
# first let's copy our ssh pubkey to the remote server so we don't have to login constantly.
|
|
|
|
ssh-copy-id -i "$HOME/.ssh/id_rsa.pub" "ubuntu@$FQDN"
|
|
|
|
|
2022-10-31 02:09:44 +00:00
|
|
|
if [ -z "$DATA_PLANE_MACVLAN_INTERFACE" ]; then
|
|
|
|
echo "INFO: It looks like you didn't provide input on the command line for the data plane macvlan interface."
|
|
|
|
echo " We need to know which interface that is! Enter it here now."
|
|
|
|
echo ""
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2022-10-31 02:09:44 +00:00
|
|
|
ssh "ubuntu@$FQDN" ip link
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2022-10-31 02:09:44 +00:00
|
|
|
echo "Please enter the network interface that's dedicated to the Sovereign Stack data plane: "
|
|
|
|
read -r DATA_PLANE_MACVLAN_INTERFACE
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2022-10-31 02:09:44 +00:00
|
|
|
fi
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2022-10-31 02:09:44 +00:00
|
|
|
if [ -z "$DISK_TO_USE" ]; then
|
|
|
|
echo "INFO: It looks like the DISK_TO_USE has not been set. Enter it now."
|
|
|
|
echo ""
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2023-02-01 19:44:05 +00:00
|
|
|
ssh "ubuntu@$FQDN" lsblk --paths
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2022-10-31 02:09:44 +00:00
|
|
|
echo "Please enter the disk or partition that Sovereign Stack will use to store data (default: loop): "
|
|
|
|
read -r DISK_TO_USE
|
|
|
|
fi
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2022-10-10 00:35:02 +00:00
|
|
|
else
|
2023-03-09 14:55:40 +00:00
|
|
|
echo "ERROR: the remote already exists! You need to go delete your lxd remote if you want to re-create your remote."
|
|
|
|
echo " It's may also be helpful to reset/rename your remote path."
|
2022-10-10 00:35:02 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2023-03-09 14:55:40 +00:00
|
|
|
|
|
|
|
#ssh "ubuntu@$FQDN" 'sudo echo "ubuntu ALL=(ALL) NOPASSWD: /bin/su - a" >> /etc/sudoers'
|
|
|
|
|
2022-11-05 23:51:58 +00:00
|
|
|
# if the disk is loop-based, then we assume the / path exists.
|
|
|
|
if [ "$DISK_TO_USE" != loop ]; then
|
|
|
|
# ensure we actually have that disk/partition on the system.
|
2023-02-01 19:44:05 +00:00
|
|
|
if ! ssh "ubuntu@$FQDN" lsblk --paths | grep -q "$DISK_TO_USE"; then
|
|
|
|
echo "ERROR: We could not findthe disk you specified. Please run this command again and supply a different disk."
|
2022-11-05 23:51:58 +00:00
|
|
|
echo "NOTE: You can always specify on the command line by adding the '--disk=/dev/sdd', for example."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2022-10-10 00:35:02 +00:00
|
|
|
# The MGMT Plane IP is the IP address that the LXD API binds to, which happens
|
|
|
|
# to be the same as whichever SSH connection you're coming in on.
|
|
|
|
MGMT_PLANE_IP="$(ssh ubuntu@"$FQDN" env | grep SSH_CONNECTION | cut -d " " -f 3)"
|
|
|
|
IP_OF_MGMT_MACHINE="$(ssh ubuntu@"$FQDN" env | grep SSH_CLIENT | cut -d " " -f 1 )"
|
|
|
|
IP_OF_MGMT_MACHINE="${IP_OF_MGMT_MACHINE#*=}"
|
|
|
|
IP_OF_MGMT_MACHINE="$(echo "$IP_OF_MGMT_MACHINE" | cut -d: -f1)"
|
|
|
|
|
2023-03-09 14:55:40 +00:00
|
|
|
# error out if the remote password is unset.
|
|
|
|
if [ -z "$LXD_REMOTE_PASSWORD" ]; then
|
2023-03-13 17:40:47 +00:00
|
|
|
echo "ERROR: LXD_REMOTE_PASSWORD must be set in your remote.conf file."
|
2022-10-10 00:35:02 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2022-10-10 00:35:02 +00:00
|
|
|
if ! command -v lxc >/dev/null 2>&1; then
|
2023-02-01 19:44:05 +00:00
|
|
|
if lxc profile list --format csv | grep -q "$BASE_IMAGE_VM_NAME"; then
|
|
|
|
lxc profile delete "$BASE_IMAGE_VM_NAME"
|
2022-10-10 00:35:02 +00:00
|
|
|
sleep 1
|
2022-06-22 17:38:11 +00:00
|
|
|
fi
|
|
|
|
|
2023-02-01 19:44:05 +00:00
|
|
|
if lxc network list --format csv | grep -q lxdbr0; then
|
|
|
|
lxc network delete lxdbr0
|
|
|
|
sleep 1
|
|
|
|
fi
|
|
|
|
|
2023-03-09 14:58:16 +00:00
|
|
|
|
|
|
|
if lxc network list --format csv | grep -q lxdbr1; then
|
|
|
|
lxc network delete lxdbr1
|
|
|
|
sleep 1
|
|
|
|
fi
|
|
|
|
|
2022-10-10 00:35:02 +00:00
|
|
|
fi
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2023-03-05 16:49:53 +00:00
|
|
|
# install dependencies.
|
2023-03-09 14:58:16 +00:00
|
|
|
ssh -t "ubuntu@$FQDN" 'sudo apt update && sudo apt upgrade -y && sudo apt install htop dnsutils nano -y'
|
2023-03-05 16:49:53 +00:00
|
|
|
if ! ssh "ubuntu@$FQDN" snap list | grep -q lxd; then
|
2023-03-09 14:58:16 +00:00
|
|
|
ssh -t "ubuntu@$FQDN" 'sudo snap install lxd --channel=5.11/stable'
|
|
|
|
sleep 5
|
2022-06-22 17:38:11 +00:00
|
|
|
fi
|
2022-11-05 23:51:58 +00:00
|
|
|
|
2023-03-09 14:58:16 +00:00
|
|
|
# install OVN for the project-specific bridge networks
|
|
|
|
ssh -t "ubuntu@$FQDN" "sudo apt-get install -y ovn-host ovn-central"
|
|
|
|
|
|
|
|
ssh -t "ubuntu@$FQDN" "sudo ovs-vsctl set open_vswitch . external_ids:ovn-remote=unix:/var/run/ovn/ovnsb_db.sock external_ids:ovn-encap-type=geneve external_ids:ovn-encap-ip=127.0.0.1"
|
|
|
|
|
2022-10-10 00:35:02 +00:00
|
|
|
# if the DATA_PLANE_MACVLAN_INTERFACE is not specified, then we 'll
|
|
|
|
# just attach VMs to the network interface used for for the default route.
|
|
|
|
if [ -z "$DATA_PLANE_MACVLAN_INTERFACE" ]; then
|
|
|
|
DATA_PLANE_MACVLAN_INTERFACE="$(ssh -t ubuntu@"$FQDN" ip route | grep default | cut -d " " -f 5)"
|
|
|
|
fi
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2023-03-02 14:46:17 +00:00
|
|
|
export DATA_PLANE_MACVLAN_INTERFACE="$DATA_PLANE_MACVLAN_INTERFACE"
|
|
|
|
|
2023-02-01 19:44:05 +00:00
|
|
|
# run lxd init on the remote server.
|
|
|
|
cat <<EOF | ssh ubuntu@"$FQDN" lxd init --preseed
|
2022-06-22 17:38:11 +00:00
|
|
|
config:
|
|
|
|
core.https_address: ${MGMT_PLANE_IP}:8443
|
2023-03-09 14:55:40 +00:00
|
|
|
core.trust_password: ${LXD_REMOTE_PASSWORD}
|
2023-02-01 19:44:05 +00:00
|
|
|
core.dns_address: ${MGMT_PLANE_IP}
|
2022-06-22 17:38:11 +00:00
|
|
|
images.auto_update_interval: 15
|
2023-03-02 14:46:17 +00:00
|
|
|
|
2022-06-22 17:38:11 +00:00
|
|
|
networks:
|
2023-02-01 19:44:05 +00:00
|
|
|
- name: lxdbr0
|
2023-03-02 14:46:17 +00:00
|
|
|
description: "ss-config,${DATA_PLANE_MACVLAN_INTERFACE:-error}"
|
2022-08-15 13:35:01 +00:00
|
|
|
type: bridge
|
|
|
|
config:
|
2023-03-09 14:58:16 +00:00
|
|
|
ipv4.address: 10.9.9.1/24
|
|
|
|
ipv4.dhcp.ranges: 10.9.9.10-10.9.9.127
|
2023-03-02 14:46:17 +00:00
|
|
|
ipv4.nat: true
|
2023-02-01 19:44:05 +00:00
|
|
|
ipv6.address: none
|
|
|
|
dns.mode: managed
|
2023-03-09 14:58:16 +00:00
|
|
|
- name: lxdbr1
|
|
|
|
description: "Non-natting bridge for ovn networks to connect to."
|
|
|
|
type: bridge
|
|
|
|
config:
|
|
|
|
ipv4.address: 10.10.10.1/24
|
|
|
|
ipv4.dhcp.ranges: 10.10.10.10-10.10.10.63
|
|
|
|
ipv4.ovn.ranges: 10.10.10.64-10.10.10.254
|
|
|
|
ipv4.nat: false
|
|
|
|
ipv6.address: none
|
2023-02-01 19:44:05 +00:00
|
|
|
profiles:
|
|
|
|
- config: {}
|
|
|
|
description: "default profile for sovereign-stack instances."
|
|
|
|
devices:
|
|
|
|
root:
|
|
|
|
path: /
|
|
|
|
pool: ss-base
|
|
|
|
type: disk
|
|
|
|
name: default
|
2022-06-22 17:38:11 +00:00
|
|
|
cluster:
|
2023-03-09 14:55:40 +00:00
|
|
|
server_name: ${REMOTE_NAME}
|
2022-06-22 17:38:11 +00:00
|
|
|
enabled: true
|
|
|
|
member_config: []
|
|
|
|
cluster_address: ""
|
|
|
|
cluster_certificate: ""
|
|
|
|
server_address: ""
|
|
|
|
cluster_password: ""
|
|
|
|
cluster_certificate_path: ""
|
|
|
|
cluster_token: ""
|
|
|
|
EOF
|
|
|
|
|
2022-10-10 00:35:02 +00:00
|
|
|
# ensure the lxd service is available over the network, then add a lxc remote, then switch the active remote to it.
|
|
|
|
if wait-for-it -t 20 "$FQDN:8443"; then
|
|
|
|
# now create a remote on your local LXC client and switch to it.
|
2023-03-09 14:55:40 +00:00
|
|
|
# the software will now target the new remote.
|
|
|
|
lxc remote add "$REMOTE_NAME" "$FQDN" --password="$LXD_REMOTE_PASSWORD" --protocol=lxd --auth-type=tls --accept-certificate
|
|
|
|
lxc remote switch "$REMOTE_NAME"
|
2022-06-22 17:38:11 +00:00
|
|
|
|
2023-03-09 14:55:40 +00:00
|
|
|
echo "INFO: You have create a new remote named '$REMOTE_NAME'. Great! We switched your lxd remote to it."
|
2022-06-22 17:38:11 +00:00
|
|
|
else
|
2022-10-10 00:35:02 +00:00
|
|
|
echo "ERROR: Could not detect the LXD endpoint. Something went wrong."
|
|
|
|
exit 1
|
2022-06-22 17:38:11 +00:00
|
|
|
fi
|
2022-10-10 00:35:02 +00:00
|
|
|
|
2023-02-01 19:44:05 +00:00
|
|
|
# create the default storage pool if necessary
|
|
|
|
if ! lxc storage list --format csv | grep -q ss-base; then
|
|
|
|
|
|
|
|
if [ "$DISK_TO_USE" != loop ]; then
|
|
|
|
# we omit putting a size here so, so LXD will consume the entire disk if '/dev/sdb' or partition if '/dev/sdb1'.
|
|
|
|
# TODO do some sanity/resource checking on DISK_TO_USE. Impelment full-disk encryption?
|
|
|
|
lxc storage create ss-base zfs source="$DISK_TO_USE"
|
|
|
|
else
|
|
|
|
# if a disk is the default 'loop', then we create a zfs storage pool
|
|
|
|
# on top of the existing filesystem using a loop device, per LXD docs
|
|
|
|
lxc storage create ss-base zfs
|
|
|
|
fi
|
|
|
|
fi
|