forked from Fediversity/Fediversity
Add test machines
This commit is contained in:
parent
cd47d884f7
commit
636e4636f7
16 changed files with 102 additions and 0 deletions
infra
|
@ -107,6 +107,13 @@ let
|
||||||
kiara = [
|
kiara = [
|
||||||
"fedi201"
|
"fedi201"
|
||||||
];
|
];
|
||||||
|
test = [
|
||||||
|
"test01"
|
||||||
|
"test02"
|
||||||
|
"test03"
|
||||||
|
"test04"
|
||||||
|
"test05"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
19
infra/test01/default.nix
Normal file
19
infra/test01/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
fediversityVm = {
|
||||||
|
vmId = 7001;
|
||||||
|
proxmox = "fediversity";
|
||||||
|
|
||||||
|
hostPublicKey = builtins.readFile ./ssh_host_ed25519_key.pub;
|
||||||
|
unsafeHostPrivateKey = builtins.readFile ./ssh_host_ed25519_key;
|
||||||
|
|
||||||
|
domain = "abundos.eu";
|
||||||
|
ipv4 = {
|
||||||
|
address = "95.215.187.51";
|
||||||
|
gateway = "95.215.187.1";
|
||||||
|
};
|
||||||
|
ipv6 = {
|
||||||
|
address = "2a00:51c0:13:1305::51";
|
||||||
|
gateway = "2a00:51c0:13:1305::1";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
19
infra/test02/default.nix
Normal file
19
infra/test02/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
fediversityVm = {
|
||||||
|
vmId = 7002;
|
||||||
|
proxmox = "fediversity";
|
||||||
|
|
||||||
|
hostPublicKey = builtins.readFile ./ssh_host_ed25519_key.pub;
|
||||||
|
unsafeHostPrivateKey = builtins.readFile ./ssh_host_ed25519_key;
|
||||||
|
|
||||||
|
domain = "abundos.eu";
|
||||||
|
ipv4 = {
|
||||||
|
address = "95.215.187.52";
|
||||||
|
gateway = "95.215.187.1";
|
||||||
|
};
|
||||||
|
ipv6 = {
|
||||||
|
address = "2a00:51c0:13:1305::52";
|
||||||
|
gateway = "2a00:51c0:13:1305::1";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
19
infra/test03/default.nix
Normal file
19
infra/test03/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
fediversityVm = {
|
||||||
|
vmId = 7003;
|
||||||
|
proxmox = "fediversity";
|
||||||
|
|
||||||
|
hostPublicKey = builtins.readFile ./ssh_host_ed25519_key.pub;
|
||||||
|
unsafeHostPrivateKey = builtins.readFile ./ssh_host_ed25519_key;
|
||||||
|
|
||||||
|
domain = "abundos.eu";
|
||||||
|
ipv4 = {
|
||||||
|
address = "95.215.187.53";
|
||||||
|
gateway = "95.215.187.1";
|
||||||
|
};
|
||||||
|
ipv6 = {
|
||||||
|
address = "2a00:51c0:13:1305::53";
|
||||||
|
gateway = "2a00:51c0:13:1305::1";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
19
infra/test04/default.nix
Normal file
19
infra/test04/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
fediversityVm = {
|
||||||
|
vmId = 7004;
|
||||||
|
proxmox = "fediversity";
|
||||||
|
|
||||||
|
hostPublicKey = builtins.readFile ./ssh_host_ed25519_key.pub;
|
||||||
|
unsafeHostPrivateKey = builtins.readFile ./ssh_host_ed25519_key;
|
||||||
|
|
||||||
|
domain = "abundos.eu";
|
||||||
|
ipv4 = {
|
||||||
|
address = "95.215.187.54";
|
||||||
|
gateway = "95.215.187.1";
|
||||||
|
};
|
||||||
|
ipv6 = {
|
||||||
|
address = "2a00:51c0:13:1305::54";
|
||||||
|
gateway = "2a00:51c0:13:1305::1";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
19
infra/test05/default.nix
Normal file
19
infra/test05/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
fediversityVm = {
|
||||||
|
vmId = 7005;
|
||||||
|
proxmox = "fediversity";
|
||||||
|
|
||||||
|
hostPublicKey = builtins.readFile ./ssh_host_ed25519_key.pub;
|
||||||
|
unsafeHostPrivateKey = builtins.readFile ./ssh_host_ed25519_key;
|
||||||
|
|
||||||
|
domain = "abundos.eu";
|
||||||
|
ipv4 = {
|
||||||
|
address = "95.215.187.55";
|
||||||
|
gateway = "95.215.187.1";
|
||||||
|
};
|
||||||
|
ipv6 = {
|
||||||
|
address = "2a00:51c0:13:1305::55";
|
||||||
|
gateway = "2a00:51c0:13:1305::1";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue