feat: Add auto deployment service

This commit is contained in:
sinavir 2024-04-21 20:35:18 +02:00
parent b5f06dc7ef
commit 8e32135aaa
2 changed files with 50 additions and 19 deletions

View file

@ -37,9 +37,11 @@ rec {
fromHive { fromHive {
builder = ( builder = (
node: module: { node: module: {
monitors = let monitors =
let
hostname = mkHost node module.config; hostname = mkHost node module.config;
in { in
{
${prefix + hostname} = { ${prefix + hostname} = {
type = "ping"; type = "ping";
inherit tags hostname; inherit tags hostname;

View file

@ -14,10 +14,18 @@ in
json = lib.mkOption { type = lib.types.package; }; json = lib.mkOption { type = lib.types.package; };
script = lib.mkOption { type = lib.types.package; }; script = lib.mkOption { type = lib.types.package; };
}; };
enableService = lib.mkEnableOption "the auto-deployment systemd unit";
host = lib.mkOption { host = lib.mkOption {
default = null; default = null;
type = with lib.types; nullOr str; type = with lib.types; nullOr str;
}; };
username = lib.mkOption {
default = null;
type = with lib.types; nullOr str;
};
passwordFile = lib.mkOption {
type = with lib.types; nullOr path;
};
extraFlags = lib.mkOption { extraFlags = lib.mkOption {
default = [ ]; default = [ ];
example = [ "--scrape-http-keywords" ]; example = [ "--scrape-http-keywords" ];
@ -46,9 +54,12 @@ in
}; };
}; };
}; };
config.statelessUptimeKuma = { config = {
statelessUptimeKuma = {
lib = import ../lib { inherit lib; }; lib = import ../lib { inherit lib; };
extraFlags = lib.optional (cfg.host != null) "--host ${cfg.host}"; extraFlags =
lib.optional (cfg.host != null) "--host ${cfg.host}"
++ lib.optional (cfg.username != null) "--username ${cfg.username}";
build = { build = {
json = probesFormat.generate "probes.json" cfg.probesConfig; json = probesFormat.generate "probes.json" cfg.probesConfig;
script = pkgs.writeShellApplication { script = pkgs.writeShellApplication {
@ -61,4 +72,22 @@ in
}; };
}; };
}; };
systemd.services.stateless-uptime-kuma = lib.mkIf cfg.enableService {
description = "Uptime-kuma probes deployment";
wants = [ "uptime-kuma.service" ];
after = [ "uptime-kuma.service" ];
wantedBy = [ "multi-user.target" ];
script = ''
UPTIME_KUMA_PASSWORD=$(cat $CREDENTIALS_DIRECTORY/password) ${lib.getExe config.statelessUptimeKuma.build.script}
'';
serviceConfig = {
LoadCredential = "password:${cfg.passwordFile}";
Type = "oneshot";
};
};
};
} }