mirror of https://github.com/docker/docs.git
67 lines
1.9 KiB
Go
67 lines
1.9 KiB
Go
package filter
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
log "github.com/Sirupsen/logrus"
|
|
"github.com/docker/swarm/cluster"
|
|
"github.com/docker/swarm/scheduler/node"
|
|
)
|
|
|
|
// ConstraintFilter selects only nodes that match certain labels.
|
|
type ConstraintFilter struct {
|
|
}
|
|
|
|
// Name returns the name of the filter
|
|
func (f *ConstraintFilter) Name() string {
|
|
return "constraint"
|
|
}
|
|
|
|
// Filter is exported
|
|
func (f *ConstraintFilter) Filter(config *cluster.ContainerConfig, nodes []*node.Node, soft bool) ([]*node.Node, error) {
|
|
constraints, err := parseExprs(config.Constraints())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for _, constraint := range constraints {
|
|
if !soft && constraint.isSoft {
|
|
continue
|
|
}
|
|
log.Debugf("matching constraint: %s%s%s (soft=%t)", constraint.key, OPERATORS[constraint.operator], constraint.value, constraint.isSoft)
|
|
|
|
candidates := []*node.Node{}
|
|
for _, node := range nodes {
|
|
switch constraint.key {
|
|
case "node":
|
|
// "node" label is a special case pinning a container to a specific node.
|
|
if constraint.Match(node.ID, node.Name) {
|
|
candidates = append(candidates, node)
|
|
}
|
|
default:
|
|
if constraint.Match(node.Labels[constraint.key]) {
|
|
candidates = append(candidates, node)
|
|
}
|
|
}
|
|
}
|
|
if len(candidates) == 0 {
|
|
return nil, fmt.Errorf("unable to find a node that satisfies the constraint %s%s%s", constraint.key, OPERATORS[constraint.operator], constraint.value)
|
|
}
|
|
nodes = candidates
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
// GetFilters returns a list of the constraints found in the container config.
|
|
func (f *ConstraintFilter) GetFilters(config *cluster.ContainerConfig) ([]string, error) {
|
|
allConstraints := []string{}
|
|
constraints, err := parseExprs(config.Constraints())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for _, constraint := range constraints {
|
|
allConstraints = append(allConstraints, fmt.Sprintf("%s%s%s", constraint.key, OPERATORS[constraint.operator], constraint.value))
|
|
}
|
|
return allConstraints, nil
|
|
}
|