mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Use default driver for IPAM if none
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
parent
8f8c4f20e3
commit
c322064127
1 changed files with 5 additions and 1 deletions
|
@ -186,9 +186,13 @@ func BasicNetworkCreateToGRPC(create basictypes.NetworkCreateRequest) swarmapi.N
|
|||
Attachable: create.Attachable,
|
||||
}
|
||||
if create.IPAM != nil {
|
||||
driver := create.IPAM.Driver
|
||||
if driver == "" {
|
||||
driver = "default"
|
||||
}
|
||||
ns.IPAM = &swarmapi.IPAMOptions{
|
||||
Driver: &swarmapi.Driver{
|
||||
Name: create.IPAM.Driver,
|
||||
Name: driver,
|
||||
Options: create.IPAM.Options,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue