forked from Fediversity/Fediversity
test deployments using data obtained through the data model in VMs. caveats: - SSH currently has a `run` abstraction that the nixops4 model still lacks - the deployed (trivial) configuration on activation has not facilitated new ssh connections (for subsequent) updates, i.e. a more sophisticated configuration would be needed for real-life usage. Reviewed-on: Fediversity/Fediversity#505
12 lines
281 B
Nix
12 lines
281 B
Nix
{
|
|
targetMachines = [
|
|
"ssh"
|
|
];
|
|
# stablize path, as just the path would yield distinct paths when applied multiple times
|
|
pathToRoot = builtins.path {
|
|
path = ../../..;
|
|
name = "root";
|
|
};
|
|
pathFromRoot = "/deployment/check/data-model-ssh";
|
|
enableAcme = true;
|
|
}
|