2015-12-28 06:19:26 -05:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-09-01 15:14:59 -04:00
|
|
|
"context"
|
2015-12-29 20:33:16 -05:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2016-12-16 20:57:05 -05:00
|
|
|
"os/exec"
|
2015-12-28 06:19:26 -05:00
|
|
|
"strings"
|
2019-09-09 17:06:12 -04:00
|
|
|
"testing"
|
2016-12-16 20:57:05 -05:00
|
|
|
"time"
|
2015-12-28 06:19:26 -05:00
|
|
|
|
2019-07-29 19:59:08 -04:00
|
|
|
"github.com/creack/pty"
|
2016-09-06 14:18:12 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2017-09-01 15:14:59 -04:00
|
|
|
"github.com/docker/docker/client"
|
2017-09-14 13:17:49 -04:00
|
|
|
"github.com/docker/docker/pkg/parsers/kernel"
|
2019-08-29 16:52:40 -04:00
|
|
|
"github.com/docker/docker/testutil/request"
|
2020-02-07 08:39:24 -05:00
|
|
|
"gotest.tools/v3/assert"
|
2015-12-28 06:19:26 -05:00
|
|
|
)
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestUpdateRunningContainer(c *testing.T) {
|
2015-12-28 06:19:26 -05:00
|
|
|
testRequires(c, DaemonIsLinux)
|
|
|
|
testRequires(c, memoryLimitSupport)
|
|
|
|
|
|
|
|
name := "test-update-container"
|
|
|
|
dockerCmd(c, "run", "-d", "--name", name, "-m", "300M", "busybox", "top")
|
|
|
|
dockerCmd(c, "update", "-m", "500M", name)
|
|
|
|
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, inspectField(c, name, "HostConfig.Memory"), "524288000")
|
2015-12-28 06:19:26 -05:00
|
|
|
|
|
|
|
file := "/sys/fs/cgroup/memory/memory.limit_in_bytes"
|
|
|
|
out, _ := dockerCmd(c, "exec", name, "cat", file)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, strings.TrimSpace(out), "524288000")
|
2015-12-28 06:19:26 -05:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestUpdateRunningContainerWithRestart(c *testing.T) {
|
2015-12-28 06:19:26 -05:00
|
|
|
testRequires(c, DaemonIsLinux)
|
|
|
|
testRequires(c, memoryLimitSupport)
|
|
|
|
|
|
|
|
name := "test-update-container"
|
|
|
|
dockerCmd(c, "run", "-d", "--name", name, "-m", "300M", "busybox", "top")
|
|
|
|
dockerCmd(c, "update", "-m", "500M", name)
|
|
|
|
dockerCmd(c, "restart", name)
|
|
|
|
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, inspectField(c, name, "HostConfig.Memory"), "524288000")
|
2015-12-28 06:19:26 -05:00
|
|
|
|
|
|
|
file := "/sys/fs/cgroup/memory/memory.limit_in_bytes"
|
|
|
|
out, _ := dockerCmd(c, "exec", name, "cat", file)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, strings.TrimSpace(out), "524288000")
|
2015-12-28 06:19:26 -05:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestUpdateStoppedContainer(c *testing.T) {
|
2015-12-28 06:19:26 -05:00
|
|
|
testRequires(c, DaemonIsLinux)
|
|
|
|
testRequires(c, memoryLimitSupport)
|
|
|
|
|
|
|
|
name := "test-update-container"
|
|
|
|
file := "/sys/fs/cgroup/memory/memory.limit_in_bytes"
|
|
|
|
dockerCmd(c, "run", "--name", name, "-m", "300M", "busybox", "cat", file)
|
|
|
|
dockerCmd(c, "update", "-m", "500M", name)
|
|
|
|
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, inspectField(c, name, "HostConfig.Memory"), "524288000")
|
2015-12-28 06:19:26 -05:00
|
|
|
|
|
|
|
out, _ := dockerCmd(c, "start", "-a", name)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, strings.TrimSpace(out), "524288000")
|
2015-12-28 06:19:26 -05:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestUpdatePausedContainer(c *testing.T) {
|
2015-12-28 06:19:26 -05:00
|
|
|
testRequires(c, DaemonIsLinux)
|
|
|
|
testRequires(c, cpuShare)
|
|
|
|
|
|
|
|
name := "test-update-container"
|
|
|
|
dockerCmd(c, "run", "-d", "--name", name, "--cpu-shares", "1000", "busybox", "top")
|
|
|
|
dockerCmd(c, "pause", name)
|
|
|
|
dockerCmd(c, "update", "--cpu-shares", "500", name)
|
|
|
|
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, inspectField(c, name, "HostConfig.CPUShares"), "500")
|
2015-12-28 06:19:26 -05:00
|
|
|
|
|
|
|
dockerCmd(c, "unpause", name)
|
|
|
|
file := "/sys/fs/cgroup/cpu/cpu.shares"
|
2016-02-02 20:26:46 -05:00
|
|
|
out, _ := dockerCmd(c, "exec", name, "cat", file)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, strings.TrimSpace(out), "500")
|
2015-12-28 06:19:26 -05:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestUpdateWithUntouchedFields(c *testing.T) {
|
2015-12-28 06:19:26 -05:00
|
|
|
testRequires(c, DaemonIsLinux)
|
|
|
|
testRequires(c, memoryLimitSupport)
|
|
|
|
testRequires(c, cpuShare)
|
|
|
|
|
|
|
|
name := "test-update-container"
|
|
|
|
dockerCmd(c, "run", "-d", "--name", name, "-m", "300M", "--cpu-shares", "800", "busybox", "top")
|
|
|
|
dockerCmd(c, "update", "-m", "500M", name)
|
|
|
|
|
|
|
|
// Update memory and not touch cpus, `cpuset.cpus` should still have the old value
|
2016-01-28 09:19:25 -05:00
|
|
|
out := inspectField(c, name, "HostConfig.CPUShares")
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, out, "800")
|
2015-12-28 06:19:26 -05:00
|
|
|
|
|
|
|
file := "/sys/fs/cgroup/cpu/cpu.shares"
|
|
|
|
out, _ = dockerCmd(c, "exec", name, "cat", file)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, strings.TrimSpace(out), "800")
|
2015-12-28 06:19:26 -05:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestUpdateContainerInvalidValue(c *testing.T) {
|
2015-12-28 06:19:26 -05:00
|
|
|
testRequires(c, DaemonIsLinux)
|
|
|
|
testRequires(c, memoryLimitSupport)
|
|
|
|
|
|
|
|
name := "test-update-container"
|
|
|
|
dockerCmd(c, "run", "-d", "--name", name, "-m", "300M", "busybox", "true")
|
|
|
|
out, _, err := dockerCmdWithError("update", "-m", "2M", name)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.ErrorContains(c, err, "")
|
Set minimum memory limit to 6M, to account for higher startup memory use
For some time, we defined a minimum limit for `--memory` limits to account for
overhead during startup, and to supply a reasonable functional container.
Changes in the runtime (runc) introduced a higher memory footprint during container
startup, which now lead to obscure error-messages that are unfriendly for users:
run --rm --memory=4m alpine echo success
docker: Error response from daemon: OCI runtime create failed: container_linux.go:349: starting container process caused "process_linux.go:449: container init caused \"process_linux.go:415: setting cgroup config for procHooks process caused \\\"failed to write \\\\\\\"4194304\\\\\\\" to \\\\\\\"/sys/fs/cgroup/memory/docker/1254c8d63f85442e599b17dff895f4543c897755ee3bd9b56d5d3d17724b38d7/memory.limit_in_bytes\\\\\\\": write /sys/fs/cgroup/memory/docker/1254c8d63f85442e599b17dff895f4543c897755ee3bd9b56d5d3d17724b38d7/memory.limit_in_bytes: device or resource busy\\\"\"": unknown.
ERRO[0000] error waiting for container: context canceled
Containers that fail to start because of this limit, will not be marked as OOMKilled,
which makes it harder for users to find the cause of the failure.
Note that _after_ this memory is only required during startup of the container. After
the container was started, the container may not consume this memory, and limits
could (manually) be lowered, for example, an alpine container running only a shell
can run with 512k of memory;
echo 524288 > /sys/fs/cgroup/memory/docker/acdd326419f0898be63b0463cfc81cd17fb34d2dae6f8aa3768ee6a075ca5c86/memory.limit_in_bytes
However, restarting the container will reset that manual limit to the container's
configuration. While `docker container update` would allow for the updated limit to
be persisted, (re)starting the container after updating produces the same error message
again, so we cannot use different limits for `docker run` / `docker create` and `docker update`.
This patch raises the minimum memory limnit to 6M, so that a better error-message is
produced if a user tries to create a container with a memory-limit that is too low:
docker create --memory=4m alpine echo success
docker: Error response from daemon: Minimum memory limit allowed is 6MB.
Possibly, this constraint could be handled by runc, so that different runtimes
could set a best-matching limit (other runtimes may require less overhead).
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-07-01 06:04:23 -04:00
|
|
|
expected := "Minimum memory limit allowed is 6MB"
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Assert(c, strings.Contains(out, expected))
|
2015-12-28 06:19:26 -05:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestUpdateContainerWithoutFlags(c *testing.T) {
|
2015-12-28 06:19:26 -05:00
|
|
|
testRequires(c, DaemonIsLinux)
|
|
|
|
testRequires(c, memoryLimitSupport)
|
|
|
|
|
|
|
|
name := "test-update-container"
|
|
|
|
dockerCmd(c, "run", "-d", "--name", name, "-m", "300M", "busybox", "true")
|
|
|
|
_, _, err := dockerCmdWithError("update", name)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.ErrorContains(c, err, "")
|
2015-12-28 06:19:26 -05:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestUpdateKernelMemory(c *testing.T) {
|
2016-03-31 22:32:46 -04:00
|
|
|
testRequires(c, DaemonIsLinux, kernelMemorySupport)
|
2015-12-28 06:19:26 -05:00
|
|
|
|
|
|
|
name := "test-update-container"
|
|
|
|
dockerCmd(c, "run", "-d", "--name", name, "--kernel-memory", "50M", "busybox", "top")
|
2016-07-11 20:07:24 -04:00
|
|
|
dockerCmd(c, "update", "--kernel-memory", "100M", name)
|
|
|
|
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, inspectField(c, name, "HostConfig.KernelMemory"), "104857600")
|
2016-07-11 20:07:24 -04:00
|
|
|
|
|
|
|
file := "/sys/fs/cgroup/memory/memory.kmem.limit_in_bytes"
|
|
|
|
out, _ := dockerCmd(c, "exec", name, "cat", file)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, strings.TrimSpace(out), "104857600")
|
2016-07-11 20:07:24 -04:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestUpdateKernelMemoryUninitialized(c *testing.T) {
|
2016-07-11 20:07:24 -04:00
|
|
|
testRequires(c, DaemonIsLinux, kernelMemorySupport)
|
|
|
|
|
2017-09-11 10:23:59 -04:00
|
|
|
isNewKernel := CheckKernelVersion(4, 6, 0)
|
2016-07-11 20:07:24 -04:00
|
|
|
name := "test-update-container"
|
|
|
|
dockerCmd(c, "run", "-d", "--name", name, "busybox", "top")
|
2015-12-28 06:19:26 -05:00
|
|
|
_, _, err := dockerCmdWithError("update", "--kernel-memory", "100M", name)
|
2016-08-02 01:17:20 -04:00
|
|
|
// Update kernel memory to a running container without kernel memory initialized
|
|
|
|
// is not allowed before kernel version 4.6.
|
|
|
|
if !isNewKernel {
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.ErrorContains(c, err, "")
|
2016-08-02 01:17:20 -04:00
|
|
|
} else {
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.NilError(c, err)
|
2016-08-02 01:17:20 -04:00
|
|
|
}
|
2015-12-28 06:19:26 -05:00
|
|
|
|
2016-03-31 22:32:46 -04:00
|
|
|
dockerCmd(c, "pause", name)
|
2016-08-02 01:17:20 -04:00
|
|
|
_, _, err = dockerCmdWithError("update", "--kernel-memory", "200M", name)
|
|
|
|
if !isNewKernel {
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.ErrorContains(c, err, "")
|
2016-08-02 01:17:20 -04:00
|
|
|
} else {
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.NilError(c, err)
|
2016-08-02 01:17:20 -04:00
|
|
|
}
|
2016-03-31 22:32:46 -04:00
|
|
|
dockerCmd(c, "unpause", name)
|
|
|
|
|
2015-12-28 06:19:26 -05:00
|
|
|
dockerCmd(c, "stop", name)
|
2016-08-02 01:17:20 -04:00
|
|
|
dockerCmd(c, "update", "--kernel-memory", "300M", name)
|
2015-12-28 06:19:26 -05:00
|
|
|
dockerCmd(c, "start", name)
|
|
|
|
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, inspectField(c, name, "HostConfig.KernelMemory"), "314572800")
|
2015-12-28 06:19:26 -05:00
|
|
|
|
|
|
|
file := "/sys/fs/cgroup/memory/memory.kmem.limit_in_bytes"
|
2016-02-02 20:26:46 -05:00
|
|
|
out, _ := dockerCmd(c, "exec", name, "cat", file)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, strings.TrimSpace(out), "314572800")
|
2015-12-28 06:19:26 -05:00
|
|
|
}
|
2015-12-29 20:33:16 -05:00
|
|
|
|
2017-09-14 13:17:49 -04:00
|
|
|
// GetKernelVersion gets the current kernel version.
|
|
|
|
func GetKernelVersion() *kernel.VersionInfo {
|
|
|
|
v, _ := kernel.ParseRelease(testEnv.DaemonInfo.KernelVersion)
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
|
|
|
// CheckKernelVersion checks if current kernel is newer than (or equal to)
|
|
|
|
// the given version.
|
|
|
|
func CheckKernelVersion(k, major, minor int) bool {
|
2017-10-03 12:09:16 -04:00
|
|
|
return kernel.CompareKernelVersion(*GetKernelVersion(), kernel.VersionInfo{Kernel: k, Major: major, Minor: minor}) >= 0
|
2017-09-14 13:17:49 -04:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestUpdateSwapMemoryOnly(c *testing.T) {
|
2016-02-24 00:36:47 -05:00
|
|
|
testRequires(c, DaemonIsLinux)
|
|
|
|
testRequires(c, memoryLimitSupport)
|
|
|
|
testRequires(c, swapMemorySupport)
|
|
|
|
|
|
|
|
name := "test-update-container"
|
|
|
|
dockerCmd(c, "run", "-d", "--name", name, "--memory", "300M", "--memory-swap", "500M", "busybox", "top")
|
|
|
|
dockerCmd(c, "update", "--memory-swap", "600M", name)
|
|
|
|
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, inspectField(c, name, "HostConfig.MemorySwap"), "629145600")
|
2016-02-24 00:36:47 -05:00
|
|
|
|
|
|
|
file := "/sys/fs/cgroup/memory/memory.memsw.limit_in_bytes"
|
2016-02-24 01:23:48 -05:00
|
|
|
out, _ := dockerCmd(c, "exec", name, "cat", file)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, strings.TrimSpace(out), "629145600")
|
2016-02-24 01:23:48 -05:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestUpdateInvalidSwapMemory(c *testing.T) {
|
2016-02-24 01:23:48 -05:00
|
|
|
testRequires(c, DaemonIsLinux)
|
|
|
|
testRequires(c, memoryLimitSupport)
|
|
|
|
testRequires(c, swapMemorySupport)
|
|
|
|
|
|
|
|
name := "test-update-container"
|
|
|
|
dockerCmd(c, "run", "-d", "--name", name, "--memory", "300M", "--memory-swap", "500M", "busybox", "top")
|
|
|
|
_, _, err := dockerCmdWithError("update", "--memory-swap", "200M", name)
|
|
|
|
// Update invalid swap memory should fail.
|
|
|
|
// This will pass docker config validation, but failed at kernel validation
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.ErrorContains(c, err, "")
|
2016-02-24 01:23:48 -05:00
|
|
|
|
|
|
|
// Update invalid swap memory with failure should not change HostConfig
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, inspectField(c, name, "HostConfig.Memory"), "314572800")
|
|
|
|
assert.Equal(c, inspectField(c, name, "HostConfig.MemorySwap"), "524288000")
|
2016-02-24 01:23:48 -05:00
|
|
|
|
|
|
|
dockerCmd(c, "update", "--memory-swap", "600M", name)
|
|
|
|
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, inspectField(c, name, "HostConfig.MemorySwap"), "629145600")
|
2016-02-24 01:23:48 -05:00
|
|
|
|
|
|
|
file := "/sys/fs/cgroup/memory/memory.memsw.limit_in_bytes"
|
2016-02-24 00:36:47 -05:00
|
|
|
out, _ := dockerCmd(c, "exec", name, "cat", file)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, strings.TrimSpace(out), "629145600")
|
2016-02-24 00:36:47 -05:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestUpdateStats(c *testing.T) {
|
2015-12-29 20:33:16 -05:00
|
|
|
testRequires(c, DaemonIsLinux)
|
|
|
|
testRequires(c, memoryLimitSupport)
|
|
|
|
testRequires(c, cpuCfsQuota)
|
|
|
|
name := "foo"
|
|
|
|
dockerCmd(c, "run", "-d", "-ti", "--name", name, "-m", "500m", "busybox")
|
|
|
|
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.NilError(c, waitRun(name))
|
2015-12-29 20:33:16 -05:00
|
|
|
|
|
|
|
getMemLimit := func(id string) uint64 {
|
2017-03-06 10:35:27 -05:00
|
|
|
resp, body, err := request.Get(fmt.Sprintf("/containers/%s/stats?stream=false", id))
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.NilError(c, err)
|
|
|
|
assert.Equal(c, resp.Header.Get("Content-Type"), "application/json")
|
2015-12-29 20:33:16 -05:00
|
|
|
|
|
|
|
var v *types.Stats
|
|
|
|
err = json.NewDecoder(body).Decode(&v)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.NilError(c, err)
|
2015-12-29 20:33:16 -05:00
|
|
|
body.Close()
|
|
|
|
|
|
|
|
return v.MemoryStats.Limit
|
|
|
|
}
|
|
|
|
preMemLimit := getMemLimit(name)
|
|
|
|
|
|
|
|
dockerCmd(c, "update", "--cpu-quota", "2000", name)
|
|
|
|
|
|
|
|
curMemLimit := getMemLimit(name)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, preMemLimit, curMemLimit)
|
2015-12-29 20:33:16 -05:00
|
|
|
}
|
2016-08-08 06:36:03 -04:00
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestUpdateMemoryWithSwapMemory(c *testing.T) {
|
2016-08-08 06:36:03 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
|
|
|
testRequires(c, memoryLimitSupport)
|
|
|
|
testRequires(c, swapMemorySupport)
|
|
|
|
|
|
|
|
name := "test-update-container"
|
|
|
|
dockerCmd(c, "run", "-d", "--name", name, "--memory", "300M", "busybox", "top")
|
|
|
|
out, _, err := dockerCmdWithError("update", "--memory", "800M", name)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.ErrorContains(c, err, "")
|
|
|
|
assert.Assert(c, strings.Contains(out, "Memory limit should be smaller than already set memoryswap limit"))
|
2016-08-08 06:36:03 -04:00
|
|
|
|
|
|
|
dockerCmd(c, "update", "--memory", "800M", "--memory-swap", "1000M", name)
|
|
|
|
}
|
2016-12-16 20:57:05 -05:00
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestUpdateNotAffectMonitorRestartPolicy(c *testing.T) {
|
2016-12-16 20:57:05 -05:00
|
|
|
testRequires(c, DaemonIsLinux, cpuShare)
|
|
|
|
|
|
|
|
out, _ := dockerCmd(c, "run", "-tid", "--restart=always", "busybox", "sh")
|
2019-08-05 11:54:15 -04:00
|
|
|
id := strings.TrimSpace(out)
|
2016-12-16 20:57:05 -05:00
|
|
|
dockerCmd(c, "update", "--cpu-shares", "512", id)
|
|
|
|
|
|
|
|
cpty, tty, err := pty.Open()
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.NilError(c, err)
|
2016-12-16 20:57:05 -05:00
|
|
|
defer cpty.Close()
|
|
|
|
|
|
|
|
cmd := exec.Command(dockerBinary, "attach", id)
|
|
|
|
cmd.Stdin = tty
|
|
|
|
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.NilError(c, cmd.Start())
|
2016-12-16 20:57:05 -05:00
|
|
|
defer cmd.Process.Kill()
|
|
|
|
|
|
|
|
_, err = cpty.Write([]byte("exit\n"))
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.NilError(c, err)
|
2016-12-16 20:57:05 -05:00
|
|
|
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.NilError(c, cmd.Wait())
|
2016-12-16 20:57:05 -05:00
|
|
|
|
|
|
|
// container should restart again and keep running
|
|
|
|
err = waitInspect(id, "{{.RestartCount}}", "1", 30*time.Second)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.NilError(c, err)
|
|
|
|
assert.NilError(c, waitRun(id))
|
2016-12-16 20:57:05 -05:00
|
|
|
}
|
2017-02-18 01:04:37 -05:00
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestUpdateWithNanoCPUs(c *testing.T) {
|
2017-02-18 01:04:37 -05:00
|
|
|
testRequires(c, cpuCfsQuota, cpuCfsPeriod)
|
|
|
|
|
|
|
|
file1 := "/sys/fs/cgroup/cpu/cpu.cfs_quota_us"
|
|
|
|
file2 := "/sys/fs/cgroup/cpu/cpu.cfs_period_us"
|
|
|
|
|
|
|
|
out, _ := dockerCmd(c, "run", "-d", "--cpus", "0.5", "--name", "top", "busybox", "top")
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Assert(c, strings.TrimSpace(out) != "")
|
2017-02-18 01:04:37 -05:00
|
|
|
|
|
|
|
out, _ = dockerCmd(c, "exec", "top", "sh", "-c", fmt.Sprintf("cat %s && cat %s", file1, file2))
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, strings.TrimSpace(out), "50000\n100000")
|
2017-02-18 01:04:37 -05:00
|
|
|
|
2019-01-03 16:49:00 -05:00
|
|
|
clt, err := client.NewClientWithOpts(client.FromEnv)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.NilError(c, err)
|
2017-09-01 15:14:59 -04:00
|
|
|
inspect, err := clt.ContainerInspect(context.Background(), "top")
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.NilError(c, err)
|
|
|
|
assert.Equal(c, inspect.HostConfig.NanoCPUs, int64(500000000))
|
2017-09-01 15:14:59 -04:00
|
|
|
|
2017-02-18 01:04:37 -05:00
|
|
|
out = inspectField(c, "top", "HostConfig.CpuQuota")
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, out, "0", "CPU CFS quota should be 0")
|
2017-02-18 01:04:37 -05:00
|
|
|
out = inspectField(c, "top", "HostConfig.CpuPeriod")
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, out, "0", "CPU CFS period should be 0")
|
2017-02-18 01:04:37 -05:00
|
|
|
|
2017-09-01 15:14:59 -04:00
|
|
|
out, _, err = dockerCmdWithError("update", "--cpu-quota", "80000", "top")
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.ErrorContains(c, err, "")
|
|
|
|
assert.Assert(c, strings.Contains(out, "Conflicting options: CPU Quota cannot be updated as NanoCPUs has already been set"))
|
2017-02-18 01:04:37 -05:00
|
|
|
|
2018-07-09 13:40:34 -04:00
|
|
|
dockerCmd(c, "update", "--cpus", "0.8", "top")
|
2017-09-01 15:14:59 -04:00
|
|
|
inspect, err = clt.ContainerInspect(context.Background(), "top")
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.NilError(c, err)
|
|
|
|
assert.Equal(c, inspect.HostConfig.NanoCPUs, int64(800000000))
|
2017-09-01 15:14:59 -04:00
|
|
|
|
2017-02-18 01:04:37 -05:00
|
|
|
out = inspectField(c, "top", "HostConfig.CpuQuota")
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, out, "0", "CPU CFS quota should be 0")
|
2017-02-18 01:04:37 -05:00
|
|
|
out = inspectField(c, "top", "HostConfig.CpuPeriod")
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, out, "0", "CPU CFS period should be 0")
|
2017-02-18 01:04:37 -05:00
|
|
|
|
|
|
|
out, _ = dockerCmd(c, "exec", "top", "sh", "-c", fmt.Sprintf("cat %s && cat %s", file1, file2))
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Equal(c, strings.TrimSpace(out), "80000\n100000")
|
2017-02-18 01:04:37 -05:00
|
|
|
}
|