mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
8411477669
Signed-off-by: Magic_RB <magic_rb@redalder.org>
54 lines
1.5 KiB
Nix
54 lines
1.5 KiB
Nix
{ config, elib, vars, config', ... }:
|
|
let
|
|
inherit (elib)
|
|
nfsVolume
|
|
nomadJob;
|
|
in
|
|
{
|
|
resource."nomad_volume"."hydra-db" = nfsVolume {
|
|
volume_name = "hydra-db";
|
|
access_mode = "single-node-writer";
|
|
server = "blowhole.hosts.in.redalder.org";
|
|
share = "/var/nfs/hydra-db";
|
|
mount_flags = [ "nfsvers=3" "hard" "async" ];
|
|
};
|
|
|
|
resource."nomad_volume"."hydra-data" = nfsVolume {
|
|
volume_name = "hydra-data";
|
|
access_mode = "single-node-writer";
|
|
server = "blowhole.hosts.in.redalder.org";
|
|
share = "/var/nfs/hydra-data";
|
|
mount_flags = [ "nfsvers=3" "hard" "async" ];
|
|
};
|
|
|
|
resource."nomad_volume"."hydra-nix" = nfsVolume {
|
|
volume_name = "hydra-nix";
|
|
access_mode = "single-node-writer";
|
|
server = "blowhole.hosts.in.redalder.org";
|
|
share = "/var/nfs/hydra-nix";
|
|
mount_flags = [ "nfsvers=3" "hard" "async" ];
|
|
};
|
|
|
|
resource."vault_policy"."hydra-policy" = {
|
|
name = "hydra-policy";
|
|
policy = ''
|
|
path "kv/data/cluster/hydra" {
|
|
capabilities = ["read"]
|
|
}
|
|
'';
|
|
};
|
|
|
|
resource."nomad_job"."hydra" = nomadJob {
|
|
jobspec = ./job.hcl;
|
|
|
|
vars = {
|
|
flake_ref = "${vars.flake_host}?rev=${vars.flake_rev}&ref=${vars.flake_ref}";
|
|
flake_sha = vars.flake_sha;
|
|
store_path = builtins.toJSON (builtins.mapAttrs (_: builtins.unsafeDiscardStringContext) {
|
|
hydra = config'.flake.nixngConfigurations.hydra.config.system.build.toplevel;
|
|
postgresql = config'.flake.nixngConfigurations.hydraPostgreSQL.config.system.build.toplevel;
|
|
});
|
|
};
|
|
};
|
|
}
|