Compare commits

..

View file

@ -13,23 +13,28 @@ let
# the runner registration-token API endpoint. # the runner registration-token API endpoint.
coreTokenPath = "/var/lib/hyperhive/forge-core-token"; coreTokenPath = "/var/lib/hyperhive/forge-core-token";
# Oneshot run before gitea-runner-hive.service starts. # Script run before the gitea-runner-hive service starts.
# # On first boot (no .runner credentials yet) it fetches a fresh
# The nixpkgs gitea-actions-runner module uses tokenFile as a systemd # runner registration token from the forge admin API and writes it to
# EnvironmentFile (sets TOKEN= in the environment). EnvironmentFile is # /run/hive-ci/runner-token so gitea-actions-runner can register.
# loaded before any ExecStartPre, so the file MUST exist at service start — # On subsequent boots the .runner credentials file already exists and
# an ExecStartPre override is too late. We solve this with: # the runner ignores the token file entirely, so we write a dummy to
# 1. tmpfiles: pre-create /run/hive-ci/runner-token with TOKEN=placeholder # satisfy the file-existence check in the NixOS module.
# 2. hive-ci-register.service (this script): on first boot only, autoRegisterScript = pkgs.writeShellScript "hive-ci-autoregister" ''
# fetch the real token from forge and overwrite with TOKEN=<real>.
# 3. gitea-runner-hive.service: After=hive-ci-register.service
#
# On subsequent boots: .runner credentials file exists so the nixpkgs
# register step exits early — TOKEN value in the EnvironmentFile is
# irrelevant (placeholder is fine).
registerScript = pkgs.writeShellScript "hive-ci-register" ''
set -euo pipefail set -euo pipefail
TOKEN_FILE=/run/hive-ci/runner-token TOKEN_FILE=/run/hive-ci/runner-token
STATE_FILE=/var/lib/gitea-runner/hive/.runner
mkdir -p /run/hive-ci
chmod 700 /run/hive-ci
if [ -f "$STATE_FILE" ]; then
# Already registered — dummy token satisfies the module's path check.
echo "already-registered" > "$TOKEN_FILE"
chmod 600 "$TOKEN_FILE"
exit 0
fi
CORE_TOKEN=$(cat /run/hive-ci/core-token) CORE_TOKEN=$(cat /run/hive-ci/core-token)
FORGE_URL="http://127.0.0.1:${toString forgeCfg.httpPort}" FORGE_URL="http://127.0.0.1:${toString forgeCfg.httpPort}"
@ -47,9 +52,8 @@ let
exit 1 exit 1
fi fi
# Write in EnvironmentFile format: TOKEN=<value>. echo "$REG_TOKEN" > "$TOKEN_FILE"
# File is already 0600 (set by tmpfiles on boot). chmod 600 "$TOKEN_FILE"
echo "TOKEN=$REG_TOKEN" > "$TOKEN_FILE"
''; '';
in in
{ {
@ -60,11 +64,13 @@ in
# survive restarts (gitea-actions-runner writes them to its stateDir # survive restarts (gitea-actions-runner writes them to its stateDir
# on first registration and reuses them on every subsequent start). # on first registration and reuses them on every subsequent start).
# #
# Auto-registration: on first boot a oneshot service fetches a runner # Auto-registration: on first boot the container fetches a runner
# registration token from the forge's admin API using the core token # registration token from the forge's admin API using the core token
# hive-c0re writes to /var/lib/hyperhive/forge-core-token. No manual # hive-c0re writes to /var/lib/hyperhive/forge-core-token. No manual
# token handling needed — `forge.ci.enable = true` is the full operator # token handling needed — `forge.ci.enable = true` is the full operator
# bootstrap. # bootstrap. Registration flow: preStart calls the Forgejo admin API,
# writes the token to /run/hive-ci/runner-token, runner registers and
# persists credentials to stateDir — token file ignored on next boot.
# #
# Nix builds inside the container use the shared /nix/store (standard # Nix builds inside the container use the shared /nix/store (standard
# nixos-container behaviour) with sandbox-fallback = true, because # nixos-container behaviour) with sandbox-fallback = true, because
@ -78,10 +84,7 @@ in
example = true; example = true;
description = '' description = ''
Run a Forgejo Actions runner in a `hive-ci` nixos-container. Run a Forgejo Actions runner in a `hive-ci` nixos-container.
Grouped under `services.hyperhive.forge` because the runner is Disabled by default; requires `services.hyperhive.forge.enable = true`.
tightly coupled to the forge instance it registers against.
Disabled by default; `services.hyperhive.forge.enable = true` is
a prerequisite (enforced by assertion).
On first start the container auto-registers against hive-forge using On first start the container auto-registers against hive-forge using
hive-c0re's admin token no manual token provisioning needed. hive-c0re's admin token no manual token provisioning needed.
@ -153,7 +156,7 @@ in
privateNetwork = false; privateNetwork = false;
bindMounts = { bindMounts = {
# Core token — used by hive-ci-register.service on first boot. # Core token — used by the auto-register script on first boot.
# Read-only: the container only reads it, never modifies it. # Read-only: the container only reads it, never modifies it.
"/run/hive-ci/core-token" = { "/run/hive-ci/core-token" = {
hostPath = coreTokenPath; hostPath = coreTokenPath;
@ -182,9 +185,9 @@ in
enable = true; enable = true;
name = cfg.name; name = cfg.name;
url = "http://127.0.0.1:${toString forgeCfg.httpPort}"; url = "http://127.0.0.1:${toString forgeCfg.httpPort}";
# EnvironmentFile providing TOKEN= for the nixpkgs register step. # Token file is written by the ExecStartPre script below.
# Pre-created by tmpfiles (placeholder); overwritten with the real # On first boot: real registration token fetched from forge API.
# token by hive-ci-register.service on first boot only. # On subsequent boots: dummy value (runner uses .runner creds).
tokenFile = "/run/hive-ci/runner-token"; tokenFile = "/run/hive-ci/runner-token";
labels = cfg.labels; labels = cfg.labels;
settings = { settings = {
@ -194,47 +197,17 @@ in
}; };
}; };
# Pre-create the EnvironmentFile so gitea-runner-hive.service can # Prepend auto-register script before the runner service starts.
# always load it. The nixpkgs module sets EnvironmentFile=tokenFile # `+` prefix runs with elevated privileges so it can read the
# which systemd loads before any ExecStartPre — the file must exist # bind-mounted core-token (owned by root on the host).
# at service-start time. On first boot hive-ci-register.service systemd.services."gitea-runner-hive".serviceConfig.ExecStartPre = lib.mkBefore [
# overwrites this placeholder with the real token before the runner "+${autoRegisterScript}"
# starts. On subsequent boots the placeholder is harmless because
# the nixpkgs register step exits early when .runner already exists.
#
# Note: `f` doesn't create parent directories, but /run/hive-ci/
# is guaranteed to exist by the time container systemd starts:
# nspawn creates mount-point directories for all bindMounts before
# launching the container's init. So the dir is there when
# systemd-tmpfiles-setup.service runs.
systemd.tmpfiles.rules = [
"f /run/hive-ci/runner-token 0600 root root - TOKEN=placeholder"
]; ];
# Oneshot that fetches a runner registration token from the forge
# admin API and writes it to the EnvironmentFile. Runs only on
# first boot (ConditionPathExists gates on .runner absence) and
# before gitea-runner-hive.service via the After= dependency below.
systemd.services.hive-ci-register = {
description = "Register hive-ci runner against Forgejo (first boot)";
serviceConfig = {
Type = "oneshot";
RemainAfterExit = true;
ExecStart = registerScript;
};
# Only needed before .runner credentials exist.
unitConfig.ConditionPathExists = "!/var/lib/gitea-runner/hive/.runner";
};
# Runner must start after the register oneshot so the EnvironmentFile
# contains the real token on first boot.
systemd.services."gitea-runner-hive".after = [ "hive-ci-register.service" ];
systemd.services."gitea-runner-hive".wants = [ "hive-ci-register.service" ];
# git is required by the runner's checkout step. # git is required by the runner's checkout step.
# Everything else (nix, rust tools) is either part of NixOS # Everything else (nix, rust tools) is either part of NixOS
# by default or pulled in hermetically by nix flake check. # by default or pulled in hermetically by nix flake check.
# curl/jq in the register script use absolute store paths. # curl/jq in the autoregister preStart use absolute store paths.
environment.systemPackages = [ pkgs.git ]; environment.systemPackages = [ pkgs.git ];
}; };
}; };