moby--moby/runconfig
Qiang Huang 837eec064d move resources from Config to HostConfig
Cgroup resources are host dependent, they should be in hostConfig.

For backward compatibility, we just copy it to hostConfig, and leave it in
Config for now, so there is no regressions, but the right way to use this
throught json is to put it in HostConfig, like:
  {
      "Hostname": "",
      ...
      "HostConfig": {
	  "CpuShares": 512,
          "Memory": 314572800,
          ...
      }
  }

As we will add CpusetMems, CpusetCpus is definitely a better name, but some
users are already using Cpuset in their http APIs, we also make it compatible.

The main idea is keep using Cpuset in Config Struct, and make it has the same
value as CpusetCpus, but not always, some scenarios:
 - Users use --cpuset in docker command, it can setup cpuset.cpus and can
   get Cpuset field from docker inspect or other http API which will get
   config info.
 - Users use --cpuset-cpus in docker command, ditto.
 - Users use Cpuset field in their http APIs, ditto.
 - Users use CpusetCpus field in their http APIs, they won't get Cpuset field
   in Config info, because by then, they should already know what happens
   to Cpuset.

Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
2015-03-11 09:31:18 +08:00
..
compare.go
config.go move resources from Config to HostConfig 2015-03-11 09:31:18 +08:00
config_test.go add ability to publish range of ports 2015-01-02 23:21:26 +00:00
exec.go refactor redundant code around calls to cmd.Parse 2015-01-06 13:41:16 +01:00
hostconfig.go move resources from Config to HostConfig 2015-03-11 09:31:18 +08:00
merge.go Merge pull request #8770 from LK4D4/logrus_support 2014-10-27 09:05:24 -07:00
parse.go move resources from Config to HostConfig 2015-03-11 09:31:18 +08:00
parse_test.go Remove unused sysinfo parameter to runconfig.Parse 2014-11-14 18:20:54 -08:00