fix(vault01/networking): mtu
Some checks failed
Build all the nodes / ap01 (push) Successful in 31s
Build all the nodes / netcore02 (push) Successful in 23s
Build all the nodes / build01 (push) Successful in 1m31s
Build all the nodes / bridge01 (push) Successful in 1m50s
Build all the nodes / geo01 (push) Successful in 1m42s
Build the shell / build-shell (push) Successful in 28s
Run pre-commit on all files / pre-commit (push) Successful in 26s
Build all the nodes / hypervisor01 (push) Successful in 1m29s
Build all the nodes / geo02 (push) Successful in 1m57s
Build all the nodes / hypervisor03 (push) Successful in 1m32s
Build all the nodes / hypervisor02 (push) Successful in 1m36s
Build all the nodes / rescue01 (push) Successful in 1m50s
Build all the nodes / storage01 (push) Successful in 1m47s
Build all the nodes / web03 (push) Successful in 1m32s
Build all the nodes / tower01 (push) Successful in 1m46s
Build all the nodes / web02 (push) Successful in 1m51s
Build all the nodes / vault01 (push) Successful in 2m10s
Build all the nodes / web01 (push) Successful in 2m9s
Build all the nodes / compute01 (push) Failing after 3m51s

This commit is contained in:
catvayor 2025-01-22 13:27:32 +01:00 committed by mdebray
parent ccce19ef3b
commit 11c7892f54

View file

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