Skip to content

Commit a8bbe7d

Browse files
authored
Merge pull request moby#2890 from arkodg/remove-ingress-hardcoded-subnet
Remove hardcoded IPAM config subnet value for ingress network
2 parents e0f62d1 + 9ccb20b commit a8bbe7d

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

‎manager/manager.go‎

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1224,12 +1224,8 @@ func newIngressNetwork() *api.Network {
12241224
},
12251225
DriverConfig: &api.Driver{},
12261226
IPAM: &api.IPAMOptions{
1227-
Driver: &api.Driver{},
1228-
Configs: []*api.IPAMConfig{
1229-
{
1230-
Subnet: "10.255.0.0/16",
1231-
},
1232-
},
1227+
Driver: &api.Driver{},
1228+
Configs: []*api.IPAMConfig{},
12331229
},
12341230
},
12351231
}

0 commit comments

Comments
 (0)