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
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:
parent
ac3cd0a505
commit
d5ed44318d
1 changed files with 16 additions and 9 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Reference in a new issue