2023-05-04 08:57:54 -04:00
---
title: Hardware infrastructure
license: 'CC-BY-SA-4.0'
---
## Octopuce
2024-02-25 12:43:23 -05:00
[Octopuce provides hardware ](https://codeberg.org/forgejo/sustainability ) managed by [the devops team ](https://codeberg.org/forgejo/governance/src/branch/main/TEAMS.md#devops ). It can only be accessed via SSH.
2023-05-04 08:57:54 -04:00
2024-02-25 12:43:23 -05:00
To access the services hosted on the LXC containers, ssh port forwarding to the private IPs can be used. For instance:
2023-05-04 08:57:54 -04:00
2024-02-25 12:43:23 -05:00
```sh
echo 127.0.0.1 private.forgejo.org >> /etc/hosts
sudo ssh -i ~/.ssh/id_rsa -L 80:10.77.0.128:80 debian@forgejo01.octopuce.fr
firefox http://private.forgejo.org
2023-05-04 08:57:54 -04:00
```
2023-12-28 11:15:22 -05:00
### Containers
It hosts LXC containers setup with [lxc-helpers ](https://code.forgejo.org/forgejo/lxc-helpers/ ).
- `fogejo-host`
2024-02-25 12:43:23 -05:00
Dedicated to http://private.forgejo.org
2023-12-28 11:15:22 -05:00
- LXC creation
```sh
lxc-helpers.sh lxc_container_create --config "docker" forgejo-host
lxc-helpers.sh lxc_container_start forgejo-host
lxc-helpers.sh lxc_install_docker forgejo-host
lxc-helpers.sh lxc_container_user_install forgejo-host $(id -u) $USER
```
- upgrades checklist:
```sh
emacs /home/debian/run-forgejo.sh # change the `image=`
docker stop forgejo
sudo rsync -av --numeric-ids --delete --progress /srv/forgejo/ /root/forgejo-backup/
docker rm forgejo
bash -x /home/debian/run-forgejo.sh
docker logs -n 200 -f forgejo
```
- `fogejo-runner-host`
2024-02-25 12:43:23 -05:00
Has runners installed to run against private.forgejo.org
2023-12-28 11:15:22 -05:00
- LXC creation
```sh
lxc-helpers.sh lxc_container_create --config "docker" forgejo-runner-host
lxc-helpers.sh lxc_container_start forgejo-runner-host
lxc-helpers.sh lxc_install_docker forgejo-runner-host
lxc-helpers.sh lxc_install_lxc forgejo-runner-host 10.85.12 fc33
lxc-helpers.sh lxc_container_user_install forgejo-runner-host $(id -u) $USER
```
2023-07-03 17:52:16 -04:00
## Hetzner
2023-11-14 12:04:34 -05:00
All hardware is running Debian GNU/linux bookworm.
### hetzner01
2023-07-03 17:52:16 -04:00
https://hetzner01.forgejo.org runs on an [EX101 ](https://www.hetzner.com/dedicated-rootserver/ex101 ) Hetzner hardware.
2023-11-14 12:04:34 -05:00
There is no backup, no redundancy and is dedicated to Forgejo runner instances.
If the hardware reboots, the runners do not restart automatically, they have to be restarted manually.
2023-05-04 08:57:54 -04:00
2023-11-14 12:04:34 -05:00
It hosts LXC containers setup with [lxc-helpers ](https://code.forgejo.org/forgejo/lxc-helpers/ ):
2023-05-04 08:57:54 -04:00
2023-11-14 12:04:34 -05:00
- `forgejo-runners`
2023-05-04 08:57:54 -04:00
2023-11-14 12:04:34 -05:00
Dedicated to Forgejo runners for the https://codeberg.org/forgejo organization.
```sh
lxc-helpers.sh lxc_container_run forgejo-runners -- sudo --user debian bash
cd codeberg.org/forgejo/
forgejo-runner-3.2.0 --config config.yml daemon >& runner.log &
```
- `runner01-lxc`
Dedicated to Forgejo runners for the https://code.forgejo.org
organization with two labels: **docker** and **self-hosted** .
- https://code.forgejo.org/forgejo
- https://code.forgejo.org/actions
- https://code.forgejo.org/forgejo-integration
- https://code.forgejo.org/forgejo-contrib
```sh
lxc-helpers.sh lxc_container_run runner01-lxc -- sudo --user debian bash
cd code.forgejo.org
for runner in forgejo-contrib forgejo forgejo-integration actions ; do ( cd $runner ; HOME=/srv/$runner forgejo-runner-3.2.0 --config config.yml daemon >& runner.log & ) ; done
```
The runners are installed with something like:
```sh
sudo wget -O /usr/local/bin/forgejo-runner-3.2.0 https://code.forgejo.org/forgejo/runner/releases/download/v3.2.0/forgejo-runner-3.2.0-linux-amd64
sudo chmod +x /usr/local/bin/forgejo-runner-3.2.0
2023-05-04 08:57:54 -04:00
```
2023-11-14 12:04:34 -05:00
### hetzner{02,03}
2023-05-04 08:57:54 -04:00
2023-11-14 12:04:34 -05:00
https://hetzner02.forgejo.org & https://hetzner03.forgejo.org run on [EX44 ](https://www.hetzner.com/dedicated-rootserver/ex44 ) Hetzner hardware.
A vSwitch is assigned via the Robot console on both servers
and [configured ](https://docs.hetzner.com/robot/dedicated-server/network/vswitch#example-debian-configuration )
in /etc/network/interfaces for each of them with something like:
```
auto enp5s0.4000
iface enp5s0.4000 inet static
address 10.53.100.2
netmask 255.255.255.0
vlan-raw-device enp5s0
mtu 1400
2023-05-04 08:57:54 -04:00
```
2023-12-11 17:58:15 -05:00
#### Root filesystem backups
- `hetzner03:/etc/cron.daily/backup-hetzner02`
`rsync -aHS --delete-excluded --delete --numeric-ids --exclude /proc --exclude /dev --exclude /sys --exclude /srv --exclude /var/lib/lxc 10.53.100.2:/ /srv/backups/hetzner02/`
- `hetzner02:/etc/cron.daily/backup-hetzner03`
`rsync -aHS --delete-excluded --delete --numeric-ids --exclude /proc --exclude /dev --exclude /sys --exclude /srv --exclude /var/lib/lxc 10.53.100.3:/ /srv/backups/hetzner03/`
2023-11-14 12:04:34 -05:00
#### DRBD
2023-05-04 08:57:54 -04:00
2023-11-14 12:04:34 -05:00
DRBD is configured with hetzner02 as the primary and hetzner03 as the secondary:
```
resource r0 {
net {
# A : write completion is determined when data is written to the local disk and the local TCP transmission buffer
# B : write completion is determined when data is written to the local disk and remote buffer cache
# C : write completion is determined when data is written to both the local disk and the remote disk
protocol C;
cram-hmac-alg sha1;
# any secret key for authentication among nodes
shared-secret "***";
}
disk {
resync-rate 1000M;
}
on hetzner02 {
address 10.53.100.2:7788;
volume 0 {
# device name
device /dev/drbd0;
2024-05-05 10:53:04 -04:00
# specify disk to be used for device above
2023-11-14 12:04:34 -05:00
disk /dev/nvme0n1p5;
# where to create metadata
# specify the block device name when using a different disk
meta-disk internal;
}
}
on hetzner03 {
address 10.53.100.3:7788;
volume 0 {
device /dev/drbd0;
disk /dev/nvme1n1p5;
meta-disk internal;
}
}
}
2023-05-04 08:57:54 -04:00
```
2023-06-18 02:51:06 -04:00
2023-11-14 12:04:34 -05:00
The DRBD device is mounted on `/var/lib/lxc` .
In `/etc/fstab` there is a noauto line:
```
/dev/drbd0 /var/lib/lxc ext4 noauto,defaults 0 0
```
To prevent split brain situations a manual step is required at boot
time, on the machine that is going to be the primary, which is
hetzner02 in a normal situation.
```sh
sudo drbdsetup status
sudo drbdadm primary r0
sudo mount /var/lib/lxc
sudo lxc-autostart start
sudo lxc-ls -f
sudo drbdsetup status
```
#### Fast storage on /srv
The second disk on each node is mounted on /srv and can be used when
fast storage is needed and there is no need for backups, such as Forgejo runners.
#### LXC
LXC is setup with [lxc-helpers ](https://code.forgejo.org/forgejo/lxc-helpers/ ).
The `/etc/default/lxc-net` file is the same on both machines:
```
USE_LXC_BRIDGE="true"
LXC_ADDR="10.6.83.1"
LXC_NETMASK="255.255.255.0"
LXC_NETWORK="10.6.83.0/24"
LXC_DHCP_RANGE="10.6.83.2,10.6.83.254"
LXC_DHCP_MAX="253"
LXC_IPV6_ADDR="fc16::216:3eff:fe00:1"
LXC_IPV6_MASK="64"
LXC_IPV6_NETWORK="fc16::/64"
LXC_IPV6_NAT="true"
```
#### Public IP addresses
The public IP addresses attached to the hosts are not failover IPs that can be moved from one host to the next.
The DNS entry needs to be updated if the primary hosts changes.
2023-12-06 18:54:07 -05:00
When additional IP addresses are attached to the server, they are added to `/etc/network/interfaces` like
65.21.67.71 and 2a01:4f9:3081:51ec::102 below.
```
auto enp5s0
iface enp5s0 inet static
address 65.21.67.73
netmask 255.255.255.192
gateway 65.21.67.65
# route 65.21.67.64/26 via 65.21.67.65
up route add -net 65.21.67.64 netmask 255.255.255.192 gw 65.21.67.65 dev enp5s0
# BEGIN code.forgejo.org
up ip addr add 65.21.67.71/32 dev enp5s0
up nft -f /home/debian/code.nftables
down ip addr del 65.21.67.71/32 dev enp5s0
# END code.forgejo.org
iface enp5s0 inet6 static
address 2a01:4f9:3081:51ec::2
netmask 64
gateway fe80::1
# BEGIN code.forgejo.org
up ip -6 addr add 2a01:4f9:3081:51ec::102/64 dev enp5s0
down ip -6 addr del 2a01:4f9:3081:51ec::102/64 dev enp5s0
# END code.forgejo.org
```
#### Port forwarding
Forwarding a port to an LXC container can be done with `/home/debian/code.nftables` for
the public IP of code.forgejo.org (65.21.67.71) to the private IP of the `code` LXC container:
```
add table ip code;
flush table ip code;
add chain ip code prerouting {
type nat hook prerouting priority 0;
policy accept;
ip daddr 65.21.67.71 tcp dport { ssh } dnat to 10.6.83.195;
};
```
with `nft -f /root/code.nftables` .
#### Reverse proxy
The reverse proxy forwards to the designated LXC container with
something like the following in
`/etc/nginx/sites-enabled/code.forgejo.org` , where 10.6.83.195 is the
IP allocated to the LXC container running the web service:
```
server {
2024-03-30 17:25:54 -04:00
listen 80;
listen [::]:80;
2023-12-06 18:54:07 -05:00
server_name code.forgejo.org;
location / {
2024-04-13 09:15:30 -04:00
deny 47.76.209.138; # crawler that does not obey robots.txt
deny 47.76.99.127; # crawler that does not obey robots.txt
2023-12-12 05:58:52 -05:00
proxy_pass http://10.6.83.195:8080;
2023-12-06 18:54:07 -05:00
client_max_body_size 2G;
#
# http://nginx.org/en/docs/http/websocket.html
#
proxy_set_header Connection $http_connection;
proxy_set_header Upgrade $http_upgrade;
include proxy_params;
}
}
```
The LE certificate is obtained once and automatically renewed with:
```
sudo certbot -n --agree-tos --email contact@forgejo.org -d code.forgejo.org --nginx
```
2023-11-14 12:04:34 -05:00
#### Containers
It hosts LXC containers setup with [lxc-helpers ](https://code.forgejo.org/forgejo/lxc-helpers/ ).
2023-12-11 16:57:43 -05:00
- `fogejo-code` on hetzner02
2023-11-14 12:04:34 -05:00
2023-12-06 10:35:44 -05:00
Dedicated to https://code.forgejo.org
2023-12-11 16:57:43 -05:00
- LXC creation
```sh
2024-02-23 10:06:24 -05:00
lxc-helpers.sh lxc_container_create --config "docker" forgejo-code
lxc-helpers.sh lxc_container_start forgejo-code
lxc-helpers.sh lxc_install_docker forgejo-code
lxc-helpers.sh lxc_container_user_install forgejo-code $(id -u) $USER
2023-12-11 16:57:43 -05:00
```
- upgrades checklist:
2024-02-11 03:21:11 -05:00
- `ssh -t debian@hetzner02.forgejo.org lxc-helpers.sh lxc_container_run forgejo-code -- sudo --user debian bash`
```sh
emacs /home/debian/run-forgejo.sh # change the `image=`
docker stop forgejo
```
- `ssh -t debian@hetzner02.forgejo.org sudo /etc/cron.daily/backup-forgejo-code`
- `ssh -t debian@hetzner02.forgejo.org lxc-helpers.sh lxc_container_run forgejo-code -- sudo --user debian bash`
```sh
docker rm forgejo
bash -x /home/debian/run-forgejo.sh
docker logs -n 200 -f forgejo
```
2024-03-30 17:25:54 -04:00
- Rotating 30 days backups happen daily `/etc/cron.daily/forgejo-code-backup.sh`
- Add code.forgejo.org to the forgejo.org SPF record
2023-12-11 16:57:43 -05:00
- `forgejo-next` on hetzner02
Dedicated to https://next.forgejo.org
- LXC creation same as code.forgejo.org
2024-02-27 06:41:31 -05:00
- `/etc/cron.hourly/forgejo-upgrade` runs `/home/debian/run-forgejo.sh > /home/debian/run-forgejo-$(date +%d).log`
2024-02-24 10:21:43 -05:00
- When a new major version is published (8.0 for instance) `run-forgejo.sh` must be updated with it
- Reset everything
2023-12-11 16:57:43 -05:00
```sh
docker stop forgejo
2023-12-18 15:36:00 -05:00
docker rm forgejo
2023-12-11 16:57:43 -05:00
sudo rm -fr /srv/forgejo.old
sudo mv /srv/forgejo /srv/forgejo.old
bash -x /home/debian/run-forgejo.sh
```
- `/home/debian/next.nftables`
```
add table ip next;
flush table ip next;
add chain ip next prerouting {
type nat hook prerouting priority 0;
policy accept;
ip daddr 65.21.67.65 tcp dport { 2020 } dnat to 10.6.83.213;
};
```
2024-03-30 17:25:54 -04:00
- Add to `iface enp5s0 inet static` in `/etc/network/interfaces`
```
up nft -f /home/debian/next.nftables
```
```
2023-12-11 16:57:43 -05:00
- `/etc/nginx/sites-available/next.forgejo.org` same as `/etc/nginx/sites-available/code.forgejo.org`
2023-12-06 18:54:07 -05:00
2024-03-30 17:25:54 -04:00
```
- `forgejo-v7` on hetzner02
Dedicated to https://v7.next.forgejo.org
- LXC creation same as code.forgejo.org
- `/etc/cron.hourly/forgejo-upgrade` runs `/home/debian/run-forgejo.sh > /home/debian/run-forgejo-$(date +%d).log`
- Reset everything
```sh
docker stop forgejo
docker rm forgejo
sudo rm -fr /srv/forgejo.old
sudo mv /srv/forgejo /srv/forgejo.old
bash -x /home/debian/run-forgejo.sh
```
- `/home/debian/v7.nftables`
```
add table ip v7;
flush table ip v7;
add chain ip v7 prerouting {
type nat hook prerouting priority 0;
policy accept;
ip daddr 65.21.67.65 tcp dport { 2070 } dnat to 10.6.83.179;
};
```
- Add to `iface enp5s0 inet static` in `/etc/network/interfaces`
```
up nft -f /home/debian/v7.nftables
```
```
- `/etc/nginx/sites-available/v7.forgejo.org` same as `/etc/nginx/sites-available/code.forgejo.org`
```
2023-12-10 13:26:00 -05:00
2024-05-26 05:23:09 -04:00
- `static-pages` on hetzner02
See [the static pages documenation ](../static-pages/ ) for more information.
- LXC creation
```sh
lxc-helpers.sh lxc_container_create --config "unprivileged" static-pages
echo "lxc.start.auto = 1" >> /var/lib/lxc/static-pages/config
lxc-helpers.sh lxc_container_start static-pages
lxc-helpers.sh lxc_container_user_install static-pages $(id -u) $USER
```
2023-12-06 10:35:44 -05:00
- `runner-forgejo-helm` on hetzner03
2024-03-15 17:34:51 -04:00
Dedicated to https://codeberg.org/forgejo-contrib/forgejo-helm and running from an ephemeral disk
2023-11-14 12:04:34 -05:00
2023-10-20 11:04:33 -04:00
## Uberspace
The website https://forgejo.org is hosted at
https://uberspace.de/. The https://codeberg.org/forgejo/website/ CI
has credentials to push HTML pages there.
2024-04-30 11:31:06 -04:00
## ubuntu-runner.forgejo.org
The ubuntu-runner.forgejo.org virtual machine is hosted in the OVH
public cloud under the same account as the domain names. It is
dedicated to a [Forgejo runner for the benefit of the snap package ](https://codeberg.org/forgejo-contrib/snap/issues/9 ) of
Forgejo.
As of April 2024 it is unclear how to run snapd in an LXC nested
container. When [this is resolved ](https://code.forgejo.org/forgejo/lxc-helpers/issues/24 ), the machine can be destroyed and the
runner moved to an LXC container instead.
Forgejo contributors with SSH access to this machine are:
- https://codeberg.org/popey
- https://codeberg.org/earl-warren
2023-06-18 02:51:06 -04:00
## Installing Forgejo runners
### Preparing the LXC hypervisor
```shell
git clone https://code.forgejo.org/forgejo/lxc-helpers/
2023-06-19 02:12:38 -04:00
lxc-helpers.sh lxc_prepare_environment
sudo lxc-helpers.sh lxc_install_lxc_inside 10.120.13
2023-06-18 02:51:06 -04:00
```
### Creating an LXC container
```shell
2023-06-19 12:38:02 -04:00
lxc-helpers.sh lxc_container_create forgejo-runners
lxc-helpers.sh lxc_container_start forgejo-runners
2023-12-28 11:15:22 -05:00
lxc-helpers.sh lxc_install_docker forgejo-runner
lxc-helpers.sh lxc_install_lxc forgejo-runner 10.85.12 fc33
2023-06-19 12:38:02 -04:00
lxc-helpers.sh lxc_container_user_install forgejo-runners $(id -u) $USER
2023-06-18 06:12:01 -04:00
lxc-helpers.sh lxc_container_run forgejo-runners -- sudo --user debian bash
2023-06-18 02:51:06 -04:00
sudo apt-get update
2023-12-28 11:15:22 -05:00
sudo apt-get install -y wget emacs-nox
2023-06-18 02:51:06 -04:00
lxc-helpers.sh lxc_prepare_environment
2024-05-10 01:36:47 -04:00
sudo wget -O /usr/local/bin/forgejo-runner https://code.forgejo.org/forgejo/runner/releases/download/v3.4.1/forgejo-runner-3.4.1-linux-amd64
2023-06-19 02:12:38 -04:00
sudo chmod +x /usr/local/bin/forgejo-runner
2023-06-18 06:12:01 -04:00
echo 'export TERM=vt100' >> .bashrc
2023-06-18 02:51:06 -04:00
```
### Creating a runner
2023-06-18 07:19:33 -04:00
Multiple runners can co-exist on the same machine. To keep things
2024-05-05 10:53:04 -04:00
organized they are located in a directory that is the same as the url
2023-06-18 07:19:33 -04:00
from which the token is obtained. For instance
DIR=codeberg.org/forgejo-integration means that the token was obtained from the
https://codeberg.org/forgejo-integration organization.
If a runner only provides unprivileged docker containers, the labels
2023-12-28 11:15:22 -05:00
in `config.yml` should be:
`labels: ['docker:docker://node:20-bookworm']` .
2023-06-18 07:19:33 -04:00
If a runner provides LXC containers and unprivileged docker
2023-12-28 11:15:22 -05:00
containers, the labels in `config.yml` should be
`labels: ['self-hosted:lxc://debian:bookworm', 'docker:docker://node:20-bookworm']` .
2023-06-18 07:19:33 -04:00
2023-06-18 02:51:06 -04:00
```shell
2023-06-18 07:19:33 -04:00
mkdir -p $DIR ; cd $DIR
2023-06-18 02:51:06 -04:00
forgejo-runner generate-config > config.yml
2023-12-28 11:15:22 -05:00
## edit config.yml and adjust the `labels:`
2023-06-18 07:19:33 -04:00
## Obtain a $TOKEN from https://$DIR
2023-12-28 11:15:22 -05:00
forgejo-runner register --no-interactive --token $TOKEN --name runner --instance https://codeberg.org
2023-06-18 06:12:01 -04:00
forgejo-runner --config config.yml daemon |& cat -v > runner.log &
2023-06-18 02:51:06 -04:00
```
#### codeberg.org config.yml
- `fetch_timeout: 30s` # because it can be slow at times
- `fetch_interval: 60s` # because there is throttling and 429 replies will mess up the runner