2016-06-13 22:56:23 -04:00
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/csv"
|
|
|
|
"fmt"
|
|
|
|
"math/big"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/docker/docker/opts"
|
|
|
|
runconfigopts "github.com/docker/docker/runconfig/opts"
|
|
|
|
"github.com/docker/engine-api/types/swarm"
|
|
|
|
"github.com/docker/go-connections/nat"
|
|
|
|
units "github.com/docker/go-units"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// DefaultReplicas is the default replicas to use for a replicated service
|
|
|
|
DefaultReplicas uint64 = 1
|
|
|
|
)
|
|
|
|
|
|
|
|
type int64Value interface {
|
|
|
|
Value() int64
|
|
|
|
}
|
|
|
|
|
|
|
|
type memBytes int64
|
|
|
|
|
|
|
|
func (m *memBytes) String() string {
|
2016-06-15 13:11:23 -04:00
|
|
|
return units.BytesSize(float64(m.Value()))
|
2016-06-13 22:56:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *memBytes) Set(value string) error {
|
|
|
|
val, err := units.RAMInBytes(value)
|
|
|
|
*m = memBytes(val)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *memBytes) Type() string {
|
|
|
|
return "MemoryBytes"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *memBytes) Value() int64 {
|
|
|
|
return int64(*m)
|
|
|
|
}
|
|
|
|
|
|
|
|
type nanoCPUs int64
|
|
|
|
|
|
|
|
func (c *nanoCPUs) String() string {
|
2016-06-15 13:11:23 -04:00
|
|
|
return big.NewRat(c.Value(), 1e9).FloatString(3)
|
2016-06-13 22:56:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *nanoCPUs) Set(value string) error {
|
|
|
|
cpu, ok := new(big.Rat).SetString(value)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("Failed to parse %v as a rational number", value)
|
|
|
|
}
|
|
|
|
nano := cpu.Mul(cpu, big.NewRat(1e9, 1))
|
|
|
|
if !nano.IsInt() {
|
|
|
|
return fmt.Errorf("value is too precise")
|
|
|
|
}
|
|
|
|
*c = nanoCPUs(nano.Num().Int64())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *nanoCPUs) Type() string {
|
|
|
|
return "NanoCPUs"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *nanoCPUs) Value() int64 {
|
|
|
|
return int64(*c)
|
|
|
|
}
|
|
|
|
|
|
|
|
// DurationOpt is an option type for time.Duration that uses a pointer. This
|
|
|
|
// allows us to get nil values outside, instead of defaulting to 0
|
|
|
|
type DurationOpt struct {
|
|
|
|
value *time.Duration
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set a new value on the option
|
|
|
|
func (d *DurationOpt) Set(s string) error {
|
|
|
|
v, err := time.ParseDuration(s)
|
|
|
|
d.value = &v
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Type returns the type of this option
|
|
|
|
func (d *DurationOpt) Type() string {
|
|
|
|
return "duration-ptr"
|
|
|
|
}
|
|
|
|
|
|
|
|
// String returns a string repr of this option
|
|
|
|
func (d *DurationOpt) String() string {
|
|
|
|
if d.value != nil {
|
|
|
|
return d.value.String()
|
|
|
|
}
|
|
|
|
return "none"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Value returns the time.Duration
|
|
|
|
func (d *DurationOpt) Value() *time.Duration {
|
|
|
|
return d.value
|
|
|
|
}
|
|
|
|
|
|
|
|
// Uint64Opt represents a uint64.
|
|
|
|
type Uint64Opt struct {
|
|
|
|
value *uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set a new value on the option
|
|
|
|
func (i *Uint64Opt) Set(s string) error {
|
|
|
|
v, err := strconv.ParseUint(s, 0, 64)
|
|
|
|
i.value = &v
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Type returns the type of this option
|
|
|
|
func (i *Uint64Opt) Type() string {
|
|
|
|
return "uint64-ptr"
|
|
|
|
}
|
|
|
|
|
|
|
|
// String returns a string repr of this option
|
|
|
|
func (i *Uint64Opt) String() string {
|
|
|
|
if i.value != nil {
|
|
|
|
return fmt.Sprintf("%v", *i.value)
|
|
|
|
}
|
|
|
|
return "none"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Value returns the uint64
|
|
|
|
func (i *Uint64Opt) Value() *uint64 {
|
|
|
|
return i.value
|
|
|
|
}
|
|
|
|
|
|
|
|
// MountOpt is a Value type for parsing mounts
|
|
|
|
type MountOpt struct {
|
|
|
|
values []swarm.Mount
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set a new mount value
|
|
|
|
func (m *MountOpt) Set(value string) error {
|
|
|
|
csvReader := csv.NewReader(strings.NewReader(value))
|
|
|
|
fields, err := csvReader.Read()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
mount := swarm.Mount{}
|
|
|
|
|
|
|
|
volumeOptions := func() *swarm.VolumeOptions {
|
|
|
|
if mount.VolumeOptions == nil {
|
|
|
|
mount.VolumeOptions = &swarm.VolumeOptions{
|
|
|
|
Labels: make(map[string]string),
|
|
|
|
}
|
|
|
|
}
|
2016-06-14 12:25:39 -04:00
|
|
|
if mount.VolumeOptions.DriverConfig == nil {
|
|
|
|
mount.VolumeOptions.DriverConfig = &swarm.Driver{}
|
|
|
|
}
|
2016-06-13 22:56:23 -04:00
|
|
|
return mount.VolumeOptions
|
|
|
|
}
|
|
|
|
|
2016-06-24 11:57:17 -04:00
|
|
|
bindOptions := func() *swarm.BindOptions {
|
|
|
|
if mount.BindOptions == nil {
|
|
|
|
mount.BindOptions = new(swarm.BindOptions)
|
|
|
|
}
|
|
|
|
return mount.BindOptions
|
|
|
|
}
|
|
|
|
|
2016-06-13 22:56:23 -04:00
|
|
|
setValueOnMap := func(target map[string]string, value string) {
|
|
|
|
parts := strings.SplitN(value, "=", 2)
|
|
|
|
if len(parts) == 1 {
|
|
|
|
target[value] = ""
|
|
|
|
} else {
|
|
|
|
target[parts[0]] = parts[1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-05 14:43:28 -04:00
|
|
|
// Set writable as the default
|
2016-06-13 22:56:23 -04:00
|
|
|
for _, field := range fields {
|
|
|
|
parts := strings.SplitN(field, "=", 2)
|
2016-07-05 14:43:28 -04:00
|
|
|
if len(parts) == 1 && strings.ToLower(parts[0]) == "readonly" {
|
|
|
|
mount.ReadOnly = true
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(parts) == 1 && strings.ToLower(parts[0]) == "volume-nocopy" {
|
|
|
|
volumeOptions().NoCopy = true
|
2016-06-13 22:56:23 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(parts) != 2 {
|
2016-06-15 10:41:57 -04:00
|
|
|
return fmt.Errorf("invalid field '%s' must be a key=value pair", field)
|
2016-06-13 22:56:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
key, value := parts[0], parts[1]
|
|
|
|
switch strings.ToLower(key) {
|
|
|
|
case "type":
|
|
|
|
mount.Type = swarm.MountType(strings.ToUpper(value))
|
|
|
|
case "source":
|
|
|
|
mount.Source = value
|
|
|
|
case "target":
|
|
|
|
mount.Target = value
|
2016-07-05 14:43:28 -04:00
|
|
|
case "readonly":
|
|
|
|
ro, err := strconv.ParseBool(value)
|
2016-06-13 22:56:23 -04:00
|
|
|
if err != nil {
|
2016-07-05 14:43:28 -04:00
|
|
|
return fmt.Errorf("invalid value for readonly: %s", value)
|
2016-06-13 22:56:23 -04:00
|
|
|
}
|
2016-07-05 14:43:28 -04:00
|
|
|
mount.ReadOnly = ro
|
2016-06-13 22:56:23 -04:00
|
|
|
case "bind-propagation":
|
2016-06-24 11:57:17 -04:00
|
|
|
bindOptions().Propagation = swarm.MountPropagation(strings.ToUpper(value))
|
2016-07-05 14:43:28 -04:00
|
|
|
case "volume-nocopy":
|
|
|
|
volumeOptions().NoCopy, err = strconv.ParseBool(value)
|
2016-06-13 22:56:23 -04:00
|
|
|
if err != nil {
|
2016-06-15 13:11:23 -04:00
|
|
|
return fmt.Errorf("invalid value for populate: %s", value)
|
2016-06-13 22:56:23 -04:00
|
|
|
}
|
|
|
|
case "volume-label":
|
|
|
|
setValueOnMap(volumeOptions().Labels, value)
|
|
|
|
case "volume-driver":
|
|
|
|
volumeOptions().DriverConfig.Name = value
|
|
|
|
case "volume-driver-opt":
|
|
|
|
if volumeOptions().DriverConfig.Options == nil {
|
|
|
|
volumeOptions().DriverConfig.Options = make(map[string]string)
|
|
|
|
}
|
|
|
|
setValueOnMap(volumeOptions().DriverConfig.Options, value)
|
|
|
|
default:
|
2016-06-29 15:14:55 -04:00
|
|
|
return fmt.Errorf("unexpected key '%s' in '%s'", key, field)
|
2016-06-13 22:56:23 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if mount.Type == "" {
|
|
|
|
return fmt.Errorf("type is required")
|
|
|
|
}
|
|
|
|
|
|
|
|
if mount.Target == "" {
|
|
|
|
return fmt.Errorf("target is required")
|
|
|
|
}
|
|
|
|
|
2016-07-05 14:43:28 -04:00
|
|
|
if mount.VolumeOptions != nil && mount.Source == "" {
|
|
|
|
return fmt.Errorf("source is required when specifying volume-* options")
|
|
|
|
}
|
|
|
|
|
|
|
|
if mount.Type == swarm.MountType("BIND") && mount.VolumeOptions != nil {
|
|
|
|
return fmt.Errorf("cannot mix 'volume-*' options with mount type '%s'", swarm.MountTypeBind)
|
|
|
|
}
|
|
|
|
if mount.Type == swarm.MountType("VOLUME") && mount.BindOptions != nil {
|
|
|
|
return fmt.Errorf("cannot mix 'bind-*' options with mount type '%s'", swarm.MountTypeVolume)
|
|
|
|
}
|
|
|
|
|
2016-06-13 22:56:23 -04:00
|
|
|
m.values = append(m.values, mount)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Type returns the type of this option
|
|
|
|
func (m *MountOpt) Type() string {
|
|
|
|
return "mount"
|
|
|
|
}
|
|
|
|
|
|
|
|
// String returns a string repr of this option
|
|
|
|
func (m *MountOpt) String() string {
|
|
|
|
mounts := []string{}
|
|
|
|
for _, mount := range m.values {
|
2016-06-15 13:11:23 -04:00
|
|
|
repr := fmt.Sprintf("%s %s %s", mount.Type, mount.Source, mount.Target)
|
|
|
|
mounts = append(mounts, repr)
|
2016-06-13 22:56:23 -04:00
|
|
|
}
|
|
|
|
return strings.Join(mounts, ", ")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Value returns the mounts
|
|
|
|
func (m *MountOpt) Value() []swarm.Mount {
|
|
|
|
return m.values
|
|
|
|
}
|
|
|
|
|
|
|
|
type updateOptions struct {
|
|
|
|
parallelism uint64
|
|
|
|
delay time.Duration
|
|
|
|
}
|
|
|
|
|
|
|
|
type resourceOptions struct {
|
|
|
|
limitCPU nanoCPUs
|
|
|
|
limitMemBytes memBytes
|
|
|
|
resCPU nanoCPUs
|
|
|
|
resMemBytes memBytes
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *resourceOptions) ToResourceRequirements() *swarm.ResourceRequirements {
|
|
|
|
return &swarm.ResourceRequirements{
|
|
|
|
Limits: &swarm.Resources{
|
|
|
|
NanoCPUs: r.limitCPU.Value(),
|
|
|
|
MemoryBytes: r.limitMemBytes.Value(),
|
|
|
|
},
|
|
|
|
Reservations: &swarm.Resources{
|
|
|
|
NanoCPUs: r.resCPU.Value(),
|
|
|
|
MemoryBytes: r.resMemBytes.Value(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type restartPolicyOptions struct {
|
|
|
|
condition string
|
|
|
|
delay DurationOpt
|
|
|
|
maxAttempts Uint64Opt
|
|
|
|
window DurationOpt
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *restartPolicyOptions) ToRestartPolicy() *swarm.RestartPolicy {
|
|
|
|
return &swarm.RestartPolicy{
|
|
|
|
Condition: swarm.RestartPolicyCondition(r.condition),
|
|
|
|
Delay: r.delay.Value(),
|
|
|
|
MaxAttempts: r.maxAttempts.Value(),
|
|
|
|
Window: r.window.Value(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func convertNetworks(networks []string) []swarm.NetworkAttachmentConfig {
|
|
|
|
nets := []swarm.NetworkAttachmentConfig{}
|
|
|
|
for _, network := range networks {
|
|
|
|
nets = append(nets, swarm.NetworkAttachmentConfig{Target: network})
|
|
|
|
}
|
|
|
|
return nets
|
|
|
|
}
|
|
|
|
|
|
|
|
type endpointOptions struct {
|
|
|
|
mode string
|
|
|
|
ports opts.ListOpts
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *endpointOptions) ToEndpointSpec() *swarm.EndpointSpec {
|
|
|
|
portConfigs := []swarm.PortConfig{}
|
|
|
|
// We can ignore errors because the format was already validated by ValidatePort
|
|
|
|
ports, portBindings, _ := nat.ParsePortSpecs(e.ports.GetAll())
|
|
|
|
|
|
|
|
for port := range ports {
|
|
|
|
portConfigs = append(portConfigs, convertPortToPortConfig(port, portBindings)...)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &swarm.EndpointSpec{
|
2016-06-17 22:06:12 -04:00
|
|
|
Mode: swarm.ResolutionMode(strings.ToLower(e.mode)),
|
2016-06-13 22:56:23 -04:00
|
|
|
Ports: portConfigs,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func convertPortToPortConfig(
|
|
|
|
port nat.Port,
|
|
|
|
portBindings map[nat.Port][]nat.PortBinding,
|
|
|
|
) []swarm.PortConfig {
|
|
|
|
ports := []swarm.PortConfig{}
|
|
|
|
|
|
|
|
for _, binding := range portBindings[port] {
|
|
|
|
hostPort, _ := strconv.ParseUint(binding.HostPort, 10, 16)
|
|
|
|
ports = append(ports, swarm.PortConfig{
|
|
|
|
//TODO Name: ?
|
|
|
|
Protocol: swarm.PortConfigProtocol(strings.ToLower(port.Proto())),
|
|
|
|
TargetPort: uint32(port.Int()),
|
|
|
|
PublishedPort: uint32(hostPort),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return ports
|
|
|
|
}
|
|
|
|
|
2016-07-08 21:44:18 -04:00
|
|
|
type logDriverOptions struct {
|
|
|
|
name string
|
|
|
|
opts opts.ListOpts
|
|
|
|
}
|
|
|
|
|
|
|
|
func newLogDriverOptions() logDriverOptions {
|
|
|
|
return logDriverOptions{opts: opts.NewListOpts(runconfigopts.ValidateEnv)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ldo *logDriverOptions) toLogDriver() *swarm.Driver {
|
|
|
|
if ldo.name == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// set the log driver only if specified.
|
|
|
|
return &swarm.Driver{
|
|
|
|
Name: ldo.name,
|
|
|
|
Options: runconfigopts.ConvertKVStringsToMap(ldo.opts.GetAll()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-13 22:56:23 -04:00
|
|
|
// ValidatePort validates a string is in the expected format for a port definition
|
|
|
|
func ValidatePort(value string) (string, error) {
|
|
|
|
portMappings, err := nat.ParsePortSpec(value)
|
|
|
|
for _, portMapping := range portMappings {
|
|
|
|
if portMapping.Binding.HostIP != "" {
|
|
|
|
return "", fmt.Errorf("HostIP is not supported by a service.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return value, err
|
|
|
|
}
|
|
|
|
|
|
|
|
type serviceOptions struct {
|
|
|
|
name string
|
|
|
|
labels opts.ListOpts
|
|
|
|
image string
|
|
|
|
args []string
|
|
|
|
env opts.ListOpts
|
|
|
|
workdir string
|
|
|
|
user string
|
|
|
|
mounts MountOpt
|
|
|
|
|
|
|
|
resources resourceOptions
|
|
|
|
stopGrace DurationOpt
|
|
|
|
|
|
|
|
replicas Uint64Opt
|
|
|
|
mode string
|
|
|
|
|
|
|
|
restartPolicy restartPolicyOptions
|
|
|
|
constraints []string
|
|
|
|
update updateOptions
|
|
|
|
networks []string
|
|
|
|
endpoint endpointOptions
|
2016-06-29 20:08:00 -04:00
|
|
|
|
|
|
|
registryAuth bool
|
2016-07-08 21:44:18 -04:00
|
|
|
|
|
|
|
logDriver logDriverOptions
|
2016-06-13 22:56:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func newServiceOptions() *serviceOptions {
|
|
|
|
return &serviceOptions{
|
|
|
|
labels: opts.NewListOpts(runconfigopts.ValidateEnv),
|
|
|
|
env: opts.NewListOpts(runconfigopts.ValidateEnv),
|
|
|
|
endpoint: endpointOptions{
|
|
|
|
ports: opts.NewListOpts(ValidatePort),
|
|
|
|
},
|
2016-07-08 21:44:18 -04:00
|
|
|
logDriver: newLogDriverOptions(),
|
2016-06-13 22:56:23 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (opts *serviceOptions) ToService() (swarm.ServiceSpec, error) {
|
|
|
|
var service swarm.ServiceSpec
|
|
|
|
|
|
|
|
service = swarm.ServiceSpec{
|
|
|
|
Annotations: swarm.Annotations{
|
|
|
|
Name: opts.name,
|
|
|
|
Labels: runconfigopts.ConvertKVStringsToMap(opts.labels.GetAll()),
|
|
|
|
},
|
|
|
|
TaskTemplate: swarm.TaskSpec{
|
|
|
|
ContainerSpec: swarm.ContainerSpec{
|
|
|
|
Image: opts.image,
|
|
|
|
Args: opts.args,
|
|
|
|
Env: opts.env.GetAll(),
|
|
|
|
Dir: opts.workdir,
|
|
|
|
User: opts.user,
|
|
|
|
Mounts: opts.mounts.Value(),
|
|
|
|
StopGracePeriod: opts.stopGrace.Value(),
|
|
|
|
},
|
|
|
|
Resources: opts.resources.ToResourceRequirements(),
|
|
|
|
RestartPolicy: opts.restartPolicy.ToRestartPolicy(),
|
|
|
|
Placement: &swarm.Placement{
|
|
|
|
Constraints: opts.constraints,
|
|
|
|
},
|
2016-07-08 21:44:18 -04:00
|
|
|
LogDriver: opts.logDriver.toLogDriver(),
|
2016-06-13 22:56:23 -04:00
|
|
|
},
|
|
|
|
Mode: swarm.ServiceMode{},
|
|
|
|
UpdateConfig: &swarm.UpdateConfig{
|
|
|
|
Parallelism: opts.update.parallelism,
|
|
|
|
Delay: opts.update.delay,
|
|
|
|
},
|
|
|
|
Networks: convertNetworks(opts.networks),
|
|
|
|
EndpointSpec: opts.endpoint.ToEndpointSpec(),
|
|
|
|
}
|
|
|
|
|
|
|
|
switch opts.mode {
|
|
|
|
case "global":
|
|
|
|
if opts.replicas.Value() != nil {
|
|
|
|
return service, fmt.Errorf("replicas can only be used with replicated mode")
|
|
|
|
}
|
|
|
|
|
|
|
|
service.Mode.Global = &swarm.GlobalService{}
|
|
|
|
case "replicated":
|
|
|
|
service.Mode.Replicated = &swarm.ReplicatedService{
|
|
|
|
Replicas: opts.replicas.Value(),
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return service, fmt.Errorf("Unknown mode: %s", opts.mode)
|
|
|
|
}
|
|
|
|
return service, nil
|
|
|
|
}
|
|
|
|
|
2016-06-29 20:08:00 -04:00
|
|
|
// addServiceFlags adds all flags that are common to both `create` and `update`.
|
2016-06-13 22:56:23 -04:00
|
|
|
// Any flags that are not common are added separately in the individual command
|
|
|
|
func addServiceFlags(cmd *cobra.Command, opts *serviceOptions) {
|
|
|
|
flags := cmd.Flags()
|
2016-06-14 12:33:50 -04:00
|
|
|
flags.StringVar(&opts.name, flagName, "", "Service name")
|
2016-06-13 22:56:23 -04:00
|
|
|
|
|
|
|
flags.StringVarP(&opts.workdir, "workdir", "w", "", "Working directory inside the container")
|
2016-06-17 11:01:46 -04:00
|
|
|
flags.StringVarP(&opts.user, flagUser, "u", "", "Username or UID")
|
2016-06-13 22:56:23 -04:00
|
|
|
|
2016-06-14 18:37:27 -04:00
|
|
|
flags.Var(&opts.resources.limitCPU, flagLimitCPU, "Limit CPUs")
|
|
|
|
flags.Var(&opts.resources.limitMemBytes, flagLimitMemory, "Limit Memory")
|
|
|
|
flags.Var(&opts.resources.resCPU, flagReserveCPU, "Reserve CPUs")
|
|
|
|
flags.Var(&opts.resources.resMemBytes, flagReserveMemory, "Reserve Memory")
|
2016-06-17 11:01:46 -04:00
|
|
|
flags.Var(&opts.stopGrace, flagStopGracePeriod, "Time to wait before force killing a container")
|
2016-06-13 22:56:23 -04:00
|
|
|
|
2016-06-14 12:33:50 -04:00
|
|
|
flags.Var(&opts.replicas, flagReplicas, "Number of tasks")
|
2016-06-13 22:56:23 -04:00
|
|
|
|
2016-07-07 05:32:19 -04:00
|
|
|
flags.StringVar(&opts.restartPolicy.condition, flagRestartCondition, "", "Restart when condition is met (none, on-failure, or any)")
|
2016-06-14 18:37:27 -04:00
|
|
|
flags.Var(&opts.restartPolicy.delay, flagRestartDelay, "Delay between restart attempts")
|
|
|
|
flags.Var(&opts.restartPolicy.maxAttempts, flagRestartMaxAttempts, "Maximum number of restarts before giving up")
|
2016-06-23 10:26:43 -04:00
|
|
|
flags.Var(&opts.restartPolicy.window, flagRestartWindow, "Window used to evaluate the restart policy")
|
2016-06-13 22:56:23 -04:00
|
|
|
|
2016-06-16 00:13:04 -04:00
|
|
|
flags.Uint64Var(&opts.update.parallelism, flagUpdateParallelism, 0, "Maximum number of tasks updated simultaneously")
|
2016-06-14 12:33:50 -04:00
|
|
|
flags.DurationVar(&opts.update.delay, flagUpdateDelay, time.Duration(0), "Delay between updates")
|
|
|
|
|
2016-07-05 08:18:49 -04:00
|
|
|
flags.StringVar(&opts.endpoint.mode, flagEndpointMode, "", "Endpoint mode (vip or dnsrr)")
|
2016-06-29 20:08:00 -04:00
|
|
|
|
|
|
|
flags.BoolVar(&opts.registryAuth, flagRegistryAuth, false, "Send registry authentication details to Swarm agents")
|
2016-07-08 21:44:18 -04:00
|
|
|
|
|
|
|
flags.StringVar(&opts.logDriver.name, flagLogDriver, "", "Logging driver for service")
|
|
|
|
flags.Var(&opts.logDriver.opts, flagLogOpt, "Logging driver options")
|
2016-06-14 12:33:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
2016-06-14 18:37:27 -04:00
|
|
|
flagConstraint = "constraint"
|
2016-06-29 12:28:33 -04:00
|
|
|
flagConstraintRemove = "constraint-rm"
|
|
|
|
flagConstraintAdd = "constraint-add"
|
2016-06-17 11:01:46 -04:00
|
|
|
flagEndpointMode = "endpoint-mode"
|
2016-06-20 12:57:57 -04:00
|
|
|
flagEnv = "env"
|
2016-06-29 12:28:33 -04:00
|
|
|
flagEnvRemove = "env-rm"
|
|
|
|
flagEnvAdd = "env-add"
|
2016-06-14 18:37:27 -04:00
|
|
|
flagLabel = "label"
|
2016-06-29 12:28:33 -04:00
|
|
|
flagLabelRemove = "label-rm"
|
|
|
|
flagLabelAdd = "label-add"
|
2016-06-14 18:37:27 -04:00
|
|
|
flagLimitCPU = "limit-cpu"
|
|
|
|
flagLimitMemory = "limit-memory"
|
|
|
|
flagMode = "mode"
|
2016-06-17 11:01:46 -04:00
|
|
|
flagMount = "mount"
|
2016-06-29 12:28:33 -04:00
|
|
|
flagMountRemove = "mount-rm"
|
|
|
|
flagMountAdd = "mount-add"
|
2016-06-17 11:01:46 -04:00
|
|
|
flagName = "name"
|
2016-06-14 18:37:27 -04:00
|
|
|
flagNetwork = "network"
|
2016-06-29 12:28:33 -04:00
|
|
|
flagNetworkRemove = "network-rm"
|
|
|
|
flagNetworkAdd = "network-add"
|
2016-06-17 11:01:46 -04:00
|
|
|
flagPublish = "publish"
|
2016-06-29 12:28:33 -04:00
|
|
|
flagPublishRemove = "publish-rm"
|
|
|
|
flagPublishAdd = "publish-add"
|
2016-06-17 11:01:46 -04:00
|
|
|
flagReplicas = "replicas"
|
|
|
|
flagReserveCPU = "reserve-cpu"
|
|
|
|
flagReserveMemory = "reserve-memory"
|
2016-06-14 18:37:27 -04:00
|
|
|
flagRestartCondition = "restart-condition"
|
|
|
|
flagRestartDelay = "restart-delay"
|
|
|
|
flagRestartMaxAttempts = "restart-max-attempts"
|
|
|
|
flagRestartWindow = "restart-window"
|
2016-06-17 11:01:46 -04:00
|
|
|
flagStopGracePeriod = "stop-grace-period"
|
2016-06-14 18:37:27 -04:00
|
|
|
flagUpdateDelay = "update-delay"
|
2016-06-17 11:01:46 -04:00
|
|
|
flagUpdateParallelism = "update-parallelism"
|
|
|
|
flagUser = "user"
|
2016-06-29 20:08:00 -04:00
|
|
|
flagRegistryAuth = "registry-auth"
|
2016-07-08 21:44:18 -04:00
|
|
|
flagLogDriver = "log-driver"
|
|
|
|
flagLogOpt = "log-opt"
|
2016-06-14 12:33:50 -04:00
|
|
|
)
|