mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
c02171802b
On unix, merge secrets/configs handling. This is important because configs can contain secrets (via templating) and potentially a config could just simply have secret information "by accident" from the user. This just make sure that configs are as secure as secrets and de-dups a lot of code. Generally this makes everything simpler and configs more secure. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
21 lines
603 B
Go
21 lines
603 B
Go
package daemon // import "github.com/docker/docker/daemon"
|
|
|
|
import (
|
|
swarmtypes "github.com/docker/docker/api/types/swarm"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// SetContainerConfigReferences sets the container config references needed
|
|
func (daemon *Daemon) SetContainerConfigReferences(name string, refs []*swarmtypes.ConfigReference) error {
|
|
if !configsSupported() && len(refs) > 0 {
|
|
logrus.Warn("configs are not supported on this platform")
|
|
return nil
|
|
}
|
|
|
|
c, err := daemon.GetContainer(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
c.ConfigReferences = append(c.ConfigReferences, refs...)
|
|
return nil
|
|
}
|