bastion-vm: use preconfigured image (#19)

This commit is contained in:
wizzdom 2024-04-04 13:18:12 +01:00 committed by GitHub
parent 31f93e0c1b
commit 48bad91a31
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 44 additions and 52 deletions

View file

@ -1,98 +1,89 @@
# User VMs # User VMs
This directory contains the configuration files for the user VMs. For the latest docs, see [here](https://docs.redbrick.dcu.ie/services/user-vms/).
Each VM is configured with cloud-init. Those configuration files are served by wheatley, but they can User VMs are deployed on [`aperture`](https://docs.redbrick.dcu.ie/hardware/aperture/) using [nomad](https://docs.redbrick.dcu.ie/services/nomad/)'s [QEMU driver](https://developer.hashicorp.com/nomad/docs/drivers/qemu).
be served by any HTTP server.
## Setting up networking on the host Each VM is configured with cloud-init. Those configuration files are served by [`wheatley`](https://docs.redbrick.dcu.ie/hardware/aperture/wheatley/), but they can be served by any HTTP server.
The host needs to be configured to allow the VMs to communicate with each other. This is done by creating ## Setting up Networking on the Host
a bridge and adding the VMs to it.
### Create a bridge The host needs to be configured to allow the VMs to communicate with each other. This is done by creating a bridge and adding the VMs to it.
To create a bridge that qemu can use to place the guest (vm) onto the same network as the host, follow ### Create a Bridge
the instructions listed [here](https://wiki.archlinux.org/title/Network_bridge#With_iproute2) for
iproute2, summarised below. To create a bridge that qemu can use to place the guest (VM) onto the same network as the host, follow the instructions listed [here](https://wiki.archlinux.org/title/Network_bridge#With_iproute2) for `iproute2`, summarised below.
We need to create a bridge interface on the host. We need to create a bridge interface on the host.
```bash ```bash
$ sudo ip link add name br0 type bridge sudo ip link add name br0 type bridge
$ sudo ip link set dev br0 up sudo ip link set dev br0 up
``` ```
We'll be adding a physical interface to this bridge to allow it to communicate with the external (UDM) We'll be adding a physical interface to this bridge to allow it to communicate with the external ([UDM](https://docs.redbrick.dcu.ie/hardware/network/mordor/)) network.
network.
```bash ```bash
$ sudo ip link set eno1 master br0 sudo ip link set eno1 master br0
``` ```
You'll need to assign an IP address to the bridge interface. This will be used as the default address You'll need to assign an IP address to the bridge interface. This will be used as the default address for the host. You can do this with DHCP or by assigning a static IP address. The best way to do this is to create a DHCP static lease on the [UDM](https://docs.redbrick.dcu.ie/hardware/network/mordor/) for the bridge interface MAC address.
for the host. You can do this with DHCP or by assigning a static IP address. The best way to do this
is to create a DHCP static lease on the UDM for the bridge interface MAC address.
:::note > [!NOTE]
TODO: Find out why connectivity seems to be lost when the bridge interface receives an address before > TODO: Find out why connectivity seems to be lost when the bridge interface receives an address before the physical interface.
the physical interface. > If connectivity is lost, release the addresses from both the bridge and the physical interface (in that order) with `sudo dhclient -v -r <iface>` and then run `sudo dhclient -v <iface>` to assign the bridge interface an address.
If connectivity is lost, release the addresses from both the bridge and the physical interface (in ### Add the VMs to the Bridge
that order) with `sudo dhclient -v -r <iface>` and then run `sudo dhclient -v <iface>` to assign the
bridge interface an address.
:::
### Add the VMs to the bridge The configuration of the qemu network options in the job file will create a new tap interface and add it to the bridge and the VM. I advise you for your own sanity to never touch the network options, they will only cause you pain.
The configuration of the qemu network options in the job file will create a new tap interface and add For others looking, this configuration is specific to *QEMU only*.
it to the bridge and the VM. I advise you for your own sanity to never touch the network options, they
will only cause you pain.
For others looking, this configuration is specific to QEMU only.
```bash ```bash
qemu-system-x86_64 ... -netdev bridge,id=hn0 -device virtio-net-pci,netdev=hn0,id=nic1 qemu-system-x86_64 ... -netdev bridge,id=hn0 -device virtio-net-pci,netdev=hn0,id=nic1
``` ```
This will assign the VM an address on the external network. The VM will be able to communicate with This will assign the VM an address on the external network. The VM will be able to communicate with the host and other VMs in the network.
the host and other VMs in the network.
You must also add `allow br0` to `/etc/qemu/bridge.conf` to allow qemu to add the tap interfaces to You must also add `allow br0` to `/etc/qemu/bridge.conf` to allow qemu to add the tap interfaces to the bridge. [Source](https://wiki.qemu.org/Features/HelperNetworking)
the bridge. [Source](https://wiki.qemu.org/Features/HelperNetworking)
The VMs, once connected to the bridge, will be assigned an address via DHCP. You can assign a static The VMs, once connected to the bridge, will be assigned an address via DHCP. You can assign a static IP address to the VMs by adding a DHCP static lease on the [UDM](https://docs.redbrick.dcu.ie/hardware/network/mordor/) for the VMs MAC address. You can get the address of a VM by checking the `nomad alloc logs` for that VM and searching for `ens3`.
IP address to the VMs by adding a DHCP static lease on the UDM for the VMs MAC address. You can get
the address of a VM by checking the nomad alloc logs for that VM and searching for `ens3`.
```bash ```bash
$ nomad job status distro-vm | grep "Node ID" -A 1 | tail -n 1 | cut -d " " -f 1 nomad job status distro-vm | grep "Node ID" -A 1 | tail -n 1 | cut -d " " -f 1
# <alloc-id> # <alloc-id>
$ nomad alloc logs <alloc-id> | grep -E "ens3.*global" | cut -d "|" -f 4 | xargs nomad alloc logs <alloc-id> | grep -E "ens3.*global" | cut -d "|" -f 4 | xargs
# cloud init... ens3: <ip-address> global # cloud init... ens3: <ip-address> global
``` ```
## Configuring the VMs ## Configuring the VMs
The VMs are configured with cloud-init. Their docs are pretty good, so I won't repeat them here. The The VMs are configured with cloud-init. Their [docs](https://cloudinit.readthedocs.io/en/latest/) are pretty good, so I won't repeat them here. The files can be served by any HTTP server, and the address is placed into the job file in the QEMU options.
files can be served by any HTTP server, and the address is placed into the job file in the QEMU options.
```hcl ```hcl title="Nomad"
... ...
args = [ args = [
... ...
"virtio-net-pci,netdev=hn0,id=nic1,mac=52:54:84:ba:49:22",
"virtio-net-pci,netdev=hn0,id=nic1,mac=52:54:84:ba:49:22", # make sure this MAC address is unique!!
"-smbios", "-smbios",
"type=1,serial=ds=nocloud-net;s=http://136.206.16.5:8000/", "type=1,serial=ds=nocloud-net;s=http://136.206.16.5:8000/",
] ]
... ...
``` ```
> [!NOTE] Note!
> If you're running multiple VMS on the same host make sure to set different MAC addresses for each VM, otherwise you'll have a bad time.
## Creating a new VM Here in the args block:
- we define that the VM will have a network device using the `virtio` driver, we pass it an `id` and a random ***unique*** MAC address
- we tell it to use `smbios` type 1 and to grab its `cloud-init` configs from `http://136.206.16.5:8000/`
> [!NOTE]
> If you're running multiple VMs on the same network make sure to set different MAC addresses for each VM, otherwise you'll have a bad time.
## Creating a New VM
To create a new VM, you'll need to create a new job file and a cloud-init configuration file. Copy any of the existing job files and modify them to suit your needs. The cloud-init configuration files can be copied and changed based on the user also. **Remember to ensure the MAC addresses are unique!**
To create a new VM, you'll need to create a new job file and a cloud-init configuration file. Copy
any of the existing job files and modify them to suit your needs. The cloud-init configuration files
can be copied and changed based on the user also.

View file

@ -23,7 +23,7 @@ job "bastion-vm" {
} }
artifact { artifact {
source = "http://10.10.0.5:8000/base-images/debian-12-genericcloud-amd64-30G.qcow2" source = "http://10.10.0.5:8000/base-images/bastion-vm-latest.qcow2"
destination = "local/bastion-vm.qcow2" destination = "local/bastion-vm.qcow2"
mode = "file" mode = "file"
} }
@ -41,7 +41,8 @@ job "bastion-vm" {
"-device", "-device",
"virtio-net-pci,netdev=hn0,id=nic1,mac=52:54:84:ba:49:02", "virtio-net-pci,netdev=hn0,id=nic1,mac=52:54:84:ba:49:02",
"-smbios", "-smbios",
"type=1,serial=ds=nocloud-net;s=http://10.10.0.5:8000/bastion-vm/", #"type=1,serial=ds=nocloud-net;s=http://10.10.0.5:8000/bastion-vm/",
"type=1",
] ]
} }
} }