mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Pass plugingetter as part of swarm node config.
This is necessary for swarmkit to support cluster wide plugins, such as globally scoped network plugins. Signed-off-by: Anusha Ragunathan <anusha.ragunathan@docker.com>
This commit is contained in:
parent
49bf474f9e
commit
660a186e92
3 changed files with 7 additions and 0 deletions
|
@ -332,6 +332,7 @@ func (c *Cluster) startNewNode(conf nodeStartConfig) (*node, error) {
|
|||
ElectionTick: 3,
|
||||
UnlockKey: conf.lockKey,
|
||||
AutoLockManagers: conf.autolock,
|
||||
PluginGetter: c.config.Backend.PluginGetter(),
|
||||
})
|
||||
|
||||
if err != nil {
|
||||
|
|
|
@ -56,4 +56,5 @@ type Backend interface {
|
|||
GetRepository(context.Context, reference.NamedTagged, *types.AuthConfig) (distribution.Repository, bool, error)
|
||||
LookupImage(name string) (*types.ImageInspect, error)
|
||||
PluginManager() *plugin.Manager
|
||||
PluginGetter() *plugin.Store
|
||||
}
|
||||
|
|
|
@ -1270,6 +1270,11 @@ func (daemon *Daemon) PluginManager() *plugin.Manager { // set up before daemon
|
|||
return daemon.pluginManager
|
||||
}
|
||||
|
||||
// PluginGetter returns current pluginStore associated with the daemon
|
||||
func (daemon *Daemon) PluginGetter() *plugin.Store {
|
||||
return daemon.PluginStore
|
||||
}
|
||||
|
||||
// CreateDaemonRoot creates the root for the daemon
|
||||
func CreateDaemonRoot(config *Config) error {
|
||||
// get the canonical path to the Docker root directory
|
||||
|
|
Loading…
Add table
Reference in a new issue