mirror of https://github.com/docker/docs.git
28 lines
549 B
Go
28 lines
549 B
Go
package strategy
|
|
|
|
import (
|
|
"sort"
|
|
|
|
"github.com/docker/swarm/cluster"
|
|
"github.com/samalba/dockerclient"
|
|
)
|
|
|
|
type BinpackPlacementStrategy struct {
|
|
}
|
|
|
|
func (p *BinpackPlacementStrategy) Initialize() error {
|
|
return nil
|
|
}
|
|
|
|
func (p *BinpackPlacementStrategy) PlaceContainer(config *dockerclient.ContainerConfig, nodes []cluster.Node) (cluster.Node, error) {
|
|
weightedNodes, err := weighNodes(config, nodes)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// sort by highest weight
|
|
sort.Sort(sort.Reverse(weightedNodes))
|
|
|
|
return weightedNodes[0].Node, nil
|
|
}
|