Use default driver for IPAM if none

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2017-02-01 15:54:56 +01:00
parent 8f8c4f20e3
commit c322064127
No known key found for this signature in database
GPG Key ID: 083CC6FD6EB699A3
1 changed files with 5 additions and 1 deletions

View File

@ -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,
},
}