fix(vault01/networking): mtu
Some checks failed
Check meta / check_meta (pull_request) Successful in 16s
Check meta / check_dns (pull_request) Successful in 16s
Check workflows / check_workflows (pull_request) Successful in 16s
Build all the nodes / netcore02 (pull_request) Successful in 21s
Run pre-commit on all files / pre-commit (push) Successful in 24s
Build all the nodes / ap01 (pull_request) Successful in 32s
Build the shell / build-shell (pull_request) Successful in 24s
Run pre-commit on all files / pre-commit (pull_request) Successful in 54s
Build all the nodes / geo01 (pull_request) Successful in 1m36s
Build all the nodes / hypervisor01 (pull_request) Successful in 1m36s
Build all the nodes / hypervisor02 (pull_request) Successful in 1m36s
Build all the nodes / rescue01 (pull_request) Successful in 1m42s
Build all the nodes / bridge01 (pull_request) Successful in 1m51s
Build all the nodes / build01 (pull_request) Successful in 2m1s
Build all the nodes / hypervisor03 (pull_request) Successful in 2m0s
Build all the nodes / geo02 (pull_request) Successful in 2m1s
Build all the nodes / tower01 (pull_request) Successful in 1m48s
Build all the nodes / storage01 (pull_request) Successful in 2m0s
Build all the nodes / vault01 (pull_request) Successful in 1m59s
Build all the nodes / web02 (pull_request) Successful in 1m52s
Build all the nodes / web03 (pull_request) Successful in 1m58s
Build all the nodes / web01 (pull_request) Successful in 2m22s
Build all the nodes / compute01 (pull_request) Failing after 3m24s

This commit is contained in:
catvayor 2025-01-22 13:27:32 +01:00
parent ac3cd0a505
commit d5ed44318d
Signed by: lbailly
GPG key ID: CE3E645251AC63F3

View file

@ -100,13 +100,16 @@ let
Id = 223; Id = 223;
address = with uplink; [ "${ip}/${builtins.toString prefix}" ]; address = with uplink; [ "${ip}/${builtins.toString prefix}" ];
extraNetwork.routes = [ extraNetwork = {
{ routes = [
# Get the public ip from the metadata {
PreferredSource = builtins.head meta.network.${name}.addresses.ipv4; # Get the public ip from the metadata
Gateway = uplink.router; PreferredSource = builtins.head meta.network.${name}.addresses.ipv4;
} Gateway = uplink.router;
]; }
];
linkConfig.MTUBytes = 1500;
};
}; };
vlan-admin = { vlan-admin = {
@ -130,7 +133,10 @@ let
Id = 2000; Id = 2000;
address = [ "10.0.255.1/24" ]; address = [ "10.0.255.1/24" ];
extraNetwork.networkConfig.DHCPServer = "yes"; extraNetwork = {
networkConfig.DHCPServer = "yes";
linkConfig.MTUBytes = 1500;
};
}; };
vlan-hypervisor = { vlan-hypervisor = {
@ -195,6 +201,7 @@ in
IPv6AcceptRA = false; IPv6AcceptRA = false;
IPv6SendRA = false; IPv6SendRA = false;
}; };
linkConfig.MTUBytes = 1504;
}; };
"50-br0" = { "50-br0" = {
name = "br0"; name = "br0";
@ -207,7 +214,7 @@ in
IPv6AcceptRA = false; IPv6AcceptRA = false;
IPv6SendRA = false; IPv6SendRA = false;
}; };
linkConfig.MTUBytes = 1500; linkConfig.MTUBytes = 1504;
}; };
"50-wg0" = { "50-wg0" = {
name = "wg0"; name = "wg0";