]> git.proxmox.com Git - pve-container.git/commitdiff
Bump maximum number of container net interfaces from 10 to 32
authorStephan Leemburg <stephan.leemburg@it-functions.nl>
Sun, 23 Aug 2020 11:38:02 +0000 (13:38 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 27 Aug 2020 10:48:00 +0000 (12:48 +0200)
Signed-off-by: Stephan Leemburg <stephan.leemburg@it-functions.nl>
src/PVE/LXC/Config.pm

index 5bf12d56286fa337fde36ef7cabf87b41ee53f7f..044e2e196f9a575b9e4e5d5ae539c95b2bf39dc8 100644 (file)
@@ -712,7 +712,7 @@ our $netconf_desc = {
 };
 PVE::JSONSchema::register_format('pve-lxc-network', $netconf_desc);
 
-my $MAX_LXC_NETWORKS = 10;
+my $MAX_LXC_NETWORKS = 32;
 for (my $i = 0; $i < $MAX_LXC_NETWORKS; $i++) {
     $confdesc->{"net$i"} = {
        optional => 1,