Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
docker-py
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
docker-py
Commits
b9ca8755
Kaydet (Commit)
b9ca8755
authored
May 01, 2017
tarafından
Dan Liew
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add missing support for `CpusetMems` parameter to HostConfig.
Signed-off-by:
Dan Liew
<
daniel.liew@imperial.ac.uk
>
üst
72b9b723
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
44 additions
and
1 deletion
+44
-1
container.py
docker/api/container.py
+2
-0
containers.py
docker/models/containers.py
+3
-0
containers.py
docker/types/containers.py
+12
-1
api_container_test.py
tests/unit/api_container_test.py
+27
-0
No files found.
docker/api/container.py
Dosyayı görüntüle @
b9ca8755
...
...
@@ -479,6 +479,8 @@ class ContainerApiMixin(object):
cpu_shares (int): CPU shares (relative weight).
cpuset_cpus (str): CPUs in which to allow execution (``0-3``,
``0,1``).
cpuset_mems (str): Memory nodes (MEMs) in which to allow execution
(``0-3``, ``0,1``). Only effective on NUMA systems.
device_read_bps: Limit read rate (bytes per second) from a device
in the form of: `[{"Path": "device_path", "Rate": rate}]`
device_read_iops: Limit read rate (IO per second) from a device.
...
...
docker/models/containers.py
Dosyayı görüntüle @
b9ca8755
...
...
@@ -483,6 +483,8 @@ class ContainerCollection(Collection):
cpu_shares (int): CPU shares (relative weight).
cpuset_cpus (str): CPUs in which to allow execution (``0-3``,
``0,1``).
cpuset_mems (str): Memory nodes (MEMs) in which to allow execution
(``0-3``, ``0,1``). Only effective on NUMA systems.
detach (bool): Run container in the background and return a
:py:class:`Container` object.
device_read_bps: Limit read rate (bytes per second) from a device
...
...
@@ -829,6 +831,7 @@ RUN_HOST_CONFIG_KWARGS = [
'cpu_quota'
,
'cpu_shares'
,
'cpuset_cpus'
,
'cpuset_mems'
,
'device_read_bps'
,
'device_read_iops'
,
'device_write_bps'
,
...
...
docker/types/containers.py
Dosyayı görüntüle @
b9ca8755
...
...
@@ -119,7 +119,8 @@ class HostConfig(dict):
cpuset_cpus
=
None
,
userns_mode
=
None
,
pids_limit
=
None
,
isolation
=
None
,
auto_remove
=
False
,
storage_opt
=
None
,
init
=
None
,
init_path
=
None
,
volume_driver
=
None
,
cpu_count
=
None
,
cpu_percent
=
None
,
nano_cpus
=
None
):
cpu_count
=
None
,
cpu_percent
=
None
,
nano_cpus
=
None
,
cpuset_mems
=
None
):
if
mem_limit
is
not
None
:
self
[
'Memory'
]
=
parse_bytes
(
mem_limit
)
...
...
@@ -328,6 +329,16 @@ class HostConfig(dict):
self
[
'CpuSetCpus'
]
=
cpuset_cpus
if
cpuset_mems
:
if
version_lt
(
version
,
'1.19'
):
raise
host_config_version_error
(
'cpuset_mems'
,
'1.19'
)
if
not
isinstance
(
cpuset_mems
,
str
):
raise
host_config_type_error
(
'cpuset_mems'
,
cpuset_mems
,
'str'
)
self
[
'CpusetMems'
]
=
cpuset_mems
if
blkio_weight
:
if
not
isinstance
(
blkio_weight
,
int
):
raise
host_config_type_error
(
...
...
tests/unit/api_container_test.py
Dosyayı görüntüle @
b9ca8755
...
...
@@ -338,6 +338,33 @@ class CreateContainerTest(BaseAPIClientTest):
self
.
assertEqual
(
args
[
1
][
'headers'
],
{
'Content-Type'
:
'application/json'
})
@requires_api_version
(
'1.19'
)
def
test_create_container_with_host_config_cpuset_mems
(
self
):
self
.
client
.
create_container
(
'busybox'
,
'ls'
,
host_config
=
self
.
client
.
create_host_config
(
cpuset_mems
=
'0'
)
)
args
=
fake_request
.
call_args
self
.
assertEqual
(
args
[
0
][
1
],
url_prefix
+
'containers/create'
)
self
.
assertEqual
(
json
.
loads
(
args
[
1
][
'data'
]),
json
.
loads
(
'''
{"Tty": false, "Image": "busybox",
"Cmd": ["ls"], "AttachStdin": false,
"AttachStderr": true,
"AttachStdout": true, "OpenStdin": false,
"StdinOnce": false,
"NetworkDisabled": false,
"HostConfig": {
"CpusetMems": "0",
"NetworkMode": "default"
}}'''
))
self
.
assertEqual
(
args
[
1
][
'headers'
],
{
'Content-Type'
:
'application/json'
})
def
test_create_container_with_cgroup_parent
(
self
):
self
.
client
.
create_container
(
'busybox'
,
'ls'
,
host_config
=
self
.
client
.
create_host_config
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment