Merge pull request #29826 from vdemeester/29809-fix-network-ipam-configuration
[1.13.x] Change the way IPAM configuration is handled on stack deploy
This commit is contained in:
commit
3fdce9676b
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