lupine: add runner token for all runners
Some checks failed
Eval nix flake / evals (push) Failing after 13s

This commit is contained in:
2025-08-03 02:37:13 +02:00
parent 8dcd471a6f
commit 7cf1c0b6e7
2 changed files with 6 additions and 12 deletions

View File

@@ -6,16 +6,14 @@
# successfully registered will gitea give you the next token.
# - oysteikt Sep 2023
sops = {
secrets."gitea/runners/token" = {
key = "gitea/runners/${lupineName}";
};
secrets."gitea/runners/token" = { };
templates."gitea-runner-envfile" = {
restartUnits = [
"gitea-runner-${lupineName}.service"
];
content = ''
TOKEN="${config.sops.placeholder."gitea/runners/token"}"
TOKEN=${config.sops.placeholder."gitea/runners/token"}
'';
};
};
@@ -41,5 +39,5 @@
networking.dhcpcd.IPv6rs = false;
networking.firewall.interfaces."podman+".allowedUDPPorts = [53 5353];
networking.firewall.interfaces."podman+".allowedUDPPorts = [ 53 5353 ];
}