diff options
author | Vincent Ambo <tazjin@tvl.su> | 2023-11-27T08·44+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-11-27T21·51+0000 |
commit | a554531e28e7b21a27504333a7d950492c26c267 (patch) | |
tree | 68809395bda7a200239654b049535d99b32bdef7 /ops/modules/gerrit-autosubmit.nix | |
parent | 623805cecd90a62089d3ec5dbe615c737231698a (diff) |
chore(ops): move from gerrit-queue to gerrit-autosubmit r/7078
Enables the new autosubmit bot, albeit without rebase functionality (this will be a separate change). Change-Id: Ia42a4f08c0edca5e6cc8bf4770ec24dbf16a5db7 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10132 Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'ops/modules/gerrit-autosubmit.nix')
-rw-r--r-- | ops/modules/gerrit-autosubmit.nix | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/ops/modules/gerrit-autosubmit.nix b/ops/modules/gerrit-autosubmit.nix new file mode 100644 index 000000000000..03b293ce2e9b --- /dev/null +++ b/ops/modules/gerrit-autosubmit.nix @@ -0,0 +1,42 @@ +# Configuration for the Gerrit autosubmit bot (//ops/gerrit-autosubmit) +{ depot, pkgs, config, lib, ... }: + +let + cfg = config.services.depot.gerrit-autosubmit; + description = "gerrit-autosubmit - autosubmit bot for Gerrit"; + mkStringOption = default: lib.mkOption { + inherit default; + type = lib.types.str; + }; +in +{ + options.services.depot.gerrit-autosubmit = { + enable = lib.mkEnableOption description; + gerritUrl = mkStringOption "https://cl.tvl.fyi"; + + secretsFile = with lib; mkOption { + description = "Path to a systemd EnvironmentFile containing secrets"; + default = config.age.secretsDir + "/gerrit-autosubmit"; + type = types.str; + }; + }; + + config = lib.mkIf cfg.enable { + systemd.services.gerrit-autosubmit = { + inherit description; + wantedBy = [ "multi-user.target" ]; + after = [ "network-online.target" ]; + + serviceConfig = { + ExecStart = "${depot.ops.gerrit-autosubmit}/bin/gerrit-autosubmit"; + DynamicUser = true; + Restart = "always"; + EnvironmentFile = cfg.secretsFile; + }; + + environment = { + GERRIT_URL = cfg.gerritUrl; + }; + }; + }; +} |