mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #1538 from aboch/06
Respect auto allocation for --ipv6
This commit is contained in:
commit
7040bb9159
3 changed files with 3 additions and 10 deletions
|
@ -225,9 +225,7 @@ func TestCreateDeleteNetwork(t *testing.T) {
|
|||
}
|
||||
|
||||
dops := GetOpsMap("abc", "")
|
||||
nops := map[string]string{
|
||||
netlabel.EnableIPv6: "true",
|
||||
}
|
||||
nops := map[string]string{}
|
||||
nc := networkCreate{Name: "network_1", NetworkType: bridgeNetType, DriverOpts: dops, NetworkOpts: nops}
|
||||
goodBody, err := json.Marshal(nc)
|
||||
if err != nil {
|
||||
|
@ -1807,9 +1805,7 @@ func TestEndToEnd(t *testing.T) {
|
|||
handleRequest := NewHTTPHandler(c)
|
||||
|
||||
dops := GetOpsMap("cdef", "1460")
|
||||
nops := map[string]string{
|
||||
netlabel.EnableIPv6: "true",
|
||||
}
|
||||
nops := map[string]string{}
|
||||
|
||||
// Create network
|
||||
nc := networkCreate{Name: "network-fiftyfive", NetworkType: bridgeNetType, DriverOpts: dops, NetworkOpts: nops}
|
||||
|
|
|
@ -413,7 +413,7 @@ func (a *Allocator) getPredefinedPool(as string, ipV6 bool) (*net.IPNet, error)
|
|||
}
|
||||
}
|
||||
|
||||
return nil, types.NotFoundErrorf("could not find an available non-overlapping address pool among the defaults to auto assign to the network")
|
||||
return nil, types.NotFoundErrorf("could not find an available, non-overlapping IPv%d address pool among the defaults to assign to the network", v)
|
||||
}
|
||||
|
||||
// RequestAddress returns an address from the specified pool ID
|
||||
|
|
|
@ -1303,9 +1303,6 @@ func (n *network) ipamAllocateVersion(ipVer int, ipam ipamapi.Ipam) error {
|
|||
}
|
||||
|
||||
if len(*cfgList) == 0 {
|
||||
if ipVer == 6 {
|
||||
return nil
|
||||
}
|
||||
*cfgList = []*IpamConf{{}}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue