mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
72567c355b
1. Don't save localscope endpoints to localstore for now. 2. Add common function updateToStore/deleteFromStore to store KVObjects. 3. Merge `getNetworksFromGlobalStore` and `getNetworksFromLocalStore` 4. Add `n.isGlobalScoped` before `n.watchEndpoints` in `addNetwork` 5. Fix integration-tests 6. Fix test failure in drivers/remote/driver_test.go 7. Restore network to store if deleteNework failed
55 lines
1.1 KiB
Go
55 lines
1.1 KiB
Go
package libnetwork
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/docker/libnetwork/driverapi"
|
|
"github.com/docker/libnetwork/netlabel"
|
|
)
|
|
|
|
type initializer struct {
|
|
fn func(driverapi.DriverCallback, map[string]interface{}) error
|
|
ntype string
|
|
}
|
|
|
|
func initDrivers(c *controller) error {
|
|
for _, i := range getInitializers() {
|
|
if err := i.fn(c, makeDriverConfig(c, i.ntype)); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func makeDriverConfig(c *controller, ntype string) map[string]interface{} {
|
|
if c.cfg == nil {
|
|
return nil
|
|
}
|
|
|
|
config := make(map[string]interface{})
|
|
|
|
if c.validateGlobalStoreConfig() {
|
|
config[netlabel.KVProvider] = c.cfg.GlobalStore.Client.Provider
|
|
config[netlabel.KVProviderURL] = c.cfg.GlobalStore.Client.Address
|
|
}
|
|
|
|
for _, label := range c.cfg.Daemon.Labels {
|
|
if !strings.HasPrefix(netlabel.Key(label), netlabel.DriverPrefix+"."+ntype) {
|
|
continue
|
|
}
|
|
|
|
config[netlabel.Key(label)] = netlabel.Value(label)
|
|
}
|
|
|
|
drvCfg, ok := c.cfg.Daemon.DriverCfg[ntype]
|
|
if !ok {
|
|
return config
|
|
}
|
|
|
|
for k, v := range drvCfg.(map[string]interface{}) {
|
|
config[k] = v
|
|
}
|
|
|
|
return config
|
|
}
|