Skip to content

Commit d111222

Browse files
committed
Fix IPv6 docker issue
Note: Docker containers were not getting IPv6 assigned because netplugin was not giving it earlier Signed-off-by: Yuva Shankar <[email protected]>
1 parent 9740990 commit d111222

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

drivers/ovsd/ovsdbDriver.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -839,12 +839,13 @@ func (d *OvsdbDriver) GetOfpPortNo(intfName string) (uint32, error) {
839839

840840
if err == nil && len(row) > 0 && len(row[0].Rows) > 0 {
841841
value := row[0].Rows[0]["ofport"]
842-
if value != -1 && reflect.TypeOf(value).Kind() == reflect.Float64 {
842+
if reflect.TypeOf(value).Kind() == reflect.Float64 {
843843
//retry few more time. Due to asynchronous call between
844844
//port creation and populating ovsdb entry for the interface
845845
//may not be populated instantly.
846-
ofpPort := uint32(reflect.ValueOf(value).Float())
847-
return ofpPort, nil
846+
if ofpPort := reflect.ValueOf(value).Float(); ofpPort != -1 {
847+
return uint32(ofpPort), nil
848+
}
848849
}
849850
}
850851
time.Sleep(300 * time.Millisecond)

netmaster/docknet/docknet.go

+1
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ func CreateDockNet(tenantName, networkName, serviceName string, nwCfg *mastercfg
182182
IPAM: &ipamCfg,
183183
Options: netPluginOptions,
184184
Attachable: true,
185+
EnableIPv6: (subnetCIDRv6 != ""),
185186
}
186187

187188
log.Infof("Creating docker network: %+v", nwCreate)

0 commit comments

Comments
 (0)