From 942e75460ca3416279733cdbbc70d94e88bd82af Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Tue, 5 Dec 2023 13:47:32 +0100 Subject: [PATCH] feat(gitea-actions-runner): Setup a second identical runner --- machines/storage01/gitea-actions-runner.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/machines/storage01/gitea-actions-runner.nix b/machines/storage01/gitea-actions-runner.nix index 71796a7..e48d207 100644 --- a/machines/storage01/gitea-actions-runner.nix +++ b/machines/storage01/gitea-actions-runner.nix @@ -25,6 +25,18 @@ in { settings = { container.network = "host"; }; }; + + runner02 = { + enable = true; + + inherit url; + token = "m0rUDBxxkMb6xLTmPFwIieHswJFROqPFByPlT3V9"; + name = "storage01 [debian]"; + + labels = [ "debian-latest:docker://node:20-bookworm" ]; + + settings = { container.network = "host"; }; + }; }; };