changes after running go fmt
This commit is contained in:
parent
04c14b3cb2
commit
0d99f256de
|
@ -121,7 +121,7 @@ const (
|
||||||
dockerBasicCaps = "CHOWN,DAC_OVERRIDE,FSETID,FOWNER,MKNOD,NET_RAW,SETGID," +
|
dockerBasicCaps = "CHOWN,DAC_OVERRIDE,FSETID,FOWNER,MKNOD,NET_RAW,SETGID," +
|
||||||
"SETUID,SETFCAP,SETPCAP,NET_BIND_SERVICE,SYS_CHROOT,KILL,AUDIT_WRITE"
|
"SETUID,SETFCAP,SETPCAP,NET_BIND_SERVICE,SYS_CHROOT,KILL,AUDIT_WRITE"
|
||||||
|
|
||||||
// This is cpu.cfs_period_us: the length of a period. The default values is 100 microsecnds represented in nano Seconds, below is the documnentation
|
// This is cpu.cfs_period_us: the length of a period. The default values is 100 microsecnds represented in nano Seconds, below is the documnentation
|
||||||
// https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt
|
// https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt
|
||||||
// https://docs.docker.com/engine/admin/resource_constraints/#cpu
|
// https://docs.docker.com/engine/admin/resource_constraints/#cpu
|
||||||
defaultCFSPeriod = 100000
|
defaultCFSPeriod = 100000
|
||||||
|
@ -222,7 +222,7 @@ type DockerDriverConfig struct {
|
||||||
CapAdd []string `mapstructure:"cap_add"` // Flags to pass directly to cap-add
|
CapAdd []string `mapstructure:"cap_add"` // Flags to pass directly to cap-add
|
||||||
CapDrop []string `mapstructure:"cap_drop"` // Flags to pass directly to cap-drop
|
CapDrop []string `mapstructure:"cap_drop"` // Flags to pass directly to cap-drop
|
||||||
ReadonlyRootfs bool `mapstructure:"readonly_rootfs"` // Mount the container’s root filesystem as read only
|
ReadonlyRootfs bool `mapstructure:"readonly_rootfs"` // Mount the container’s root filesystem as read only
|
||||||
CPUHardLimit bool `mapstructure:"cpu_hard_limit"` // Flag to pass whether to enforce CPU hard limit.
|
CPUHardLimit bool `mapstructure:"cpu_hard_limit"` // Enforce CPU hard limit.
|
||||||
}
|
}
|
||||||
|
|
||||||
func sliceMergeUlimit(ulimitsRaw map[string]string) ([]docker.ULimit, error) {
|
func sliceMergeUlimit(ulimitsRaw map[string]string) ([]docker.ULimit, error) {
|
||||||
|
@ -1128,11 +1128,11 @@ func (d *DockerDriver) createContainerConfig(ctx *ExecContext, task *structs.Tas
|
||||||
VolumeDriver: driverConfig.VolumeDriver,
|
VolumeDriver: driverConfig.VolumeDriver,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Calculate CPU Quota
|
// Calculate CPU Quota
|
||||||
if driverConfig.CPUHardLimit {
|
if driverConfig.CPUHardLimit {
|
||||||
percentTicks := float64(task.Resources.CPU) / shelpers.TotalTicksAvailable()
|
percentTicks := float64(task.Resources.CPU) / shelpers.TotalTicksAvailable()
|
||||||
hostConfig.CPUQuota = int64(percentTicks * defaultCFSPeriod)
|
hostConfig.CPUQuota = int64(percentTicks * defaultCFSPeriod)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Windows does not support MemorySwap/MemorySwappiness #2193
|
// Windows does not support MemorySwap/MemorySwappiness #2193
|
||||||
if runtime.GOOS == "windows" {
|
if runtime.GOOS == "windows" {
|
||||||
|
@ -1153,7 +1153,7 @@ func (d *DockerDriver) createContainerConfig(ctx *ExecContext, task *structs.Tas
|
||||||
d.logger.Printf("[DEBUG] driver.docker: using %d bytes memory for %s", hostConfig.Memory, task.Name)
|
d.logger.Printf("[DEBUG] driver.docker: using %d bytes memory for %s", hostConfig.Memory, task.Name)
|
||||||
d.logger.Printf("[DEBUG] driver.docker: using %d cpu shares for %s", hostConfig.CPUShares, task.Name)
|
d.logger.Printf("[DEBUG] driver.docker: using %d cpu shares for %s", hostConfig.CPUShares, task.Name)
|
||||||
if driverConfig.CPUHardLimit {
|
if driverConfig.CPUHardLimit {
|
||||||
d.logger.Printf("[DEBUG] driver.docker: using %d cpu quota (cpu-period: %d) for %s", hostConfig.CPUQuota, defaultCFSPeriod , task.Name)
|
d.logger.Printf("[DEBUG] driver.docker: using %d cpu quota (cpu-period: %d) for %s", hostConfig.CPUQuota, defaultCFSPeriod, task.Name)
|
||||||
}
|
}
|
||||||
d.logger.Printf("[DEBUG] driver.docker: binding directories %#v for %s", hostConfig.Binds, task.Name)
|
d.logger.Printf("[DEBUG] driver.docker: binding directories %#v for %s", hostConfig.Binds, task.Name)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue