Skip to content

Commit

Permalink
Remove hardcoded IPAM config subnet value for ingress network
Browse files Browse the repository at this point in the history
Fixes: https://docker.atlassian.net/browse/ENGORC-2651

Signed-off-by: Arko Dasgupta <arko.dasgupta@docker.com>
  • Loading branch information
Arko Dasgupta committed Sep 10, 2019
1 parent e0f62d1 commit 9ccb20b
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions manager/manager.go
Expand Up @@ -1224,12 +1224,8 @@ func newIngressNetwork() *api.Network {
},
DriverConfig: &api.Driver{},
IPAM: &api.IPAMOptions{
Driver: &api.Driver{},
Configs: []*api.IPAMConfig{
{
Subnet: "10.255.0.0/16",
},
},
Driver: &api.Driver{},
Configs: []*api.IPAMConfig{},
},
},
}
Expand Down

0 comments on commit 9ccb20b

Please sign in to comment.