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
ce8a6ea4
Kaydet (Commit)
ce8a6ea4
authored
Haz 19, 2017
tarafından
Joffrey F
Kaydeden (comit)
GitHub
Haz 19, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #1620 from docker/healthcheck-start-period
Add support for start_period in Healthcheck spec
üst
75e850e5
1ea6618b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
47 additions
and
9 deletions
+47
-9
container.py
docker/api/container.py
+2
-0
containers.py
docker/models/containers.py
+2
-0
containers.py
docker/types/containers.py
+11
-4
healthcheck.py
docker/types/healthcheck.py
+11
-1
api_healthcheck_test.py
tests/integration/api_healthcheck_test.py
+21
-4
No files found.
docker/api/container.py
Dosyayı görüntüle @
ce8a6ea4
...
@@ -418,6 +418,8 @@ class ContainerApiMixin(object):
...
@@ -418,6 +418,8 @@ class ContainerApiMixin(object):
networking_config (dict): A networking configuration generated
networking_config (dict): A networking configuration generated
by :py:meth:`create_networking_config`.
by :py:meth:`create_networking_config`.
runtime (str): Runtime to use with this container.
runtime (str): Runtime to use with this container.
healthcheck (dict): Specify a test to perform to check that the
container is healthy.
Returns:
Returns:
A dictionary with an image 'Id' key and a 'Warnings' key.
A dictionary with an image 'Id' key and a 'Warnings' key.
...
...
docker/models/containers.py
Dosyayı görüntüle @
ce8a6ea4
...
@@ -516,6 +516,8 @@ class ContainerCollection(Collection):
...
@@ -516,6 +516,8 @@ class ContainerCollection(Collection):
container, as a mapping of hostname to IP address.
container, as a mapping of hostname to IP address.
group_add (:py:class:`list`): List of additional group names and/or
group_add (:py:class:`list`): List of additional group names and/or
IDs that the container process will run as.
IDs that the container process will run as.
healthcheck (dict): Specify a test to perform to check that the
container is healthy.
hostname (str): Optional hostname for the container.
hostname (str): Optional hostname for the container.
init (bool): Run an init inside the container that forwards
init (bool): Run an init inside the container that forwards
signals and reaps processes
signals and reaps processes
...
...
docker/types/containers.py
Dosyayı görüntüle @
ce8a6ea4
...
@@ -565,10 +565,17 @@ class ContainerConfig(dict):
...
@@ -565,10 +565,17 @@ class ContainerConfig(dict):
'stop_timeout was only introduced in API version 1.25'
'stop_timeout was only introduced in API version 1.25'
)
)
if
healthcheck
is
not
None
and
version_lt
(
version
,
'1.24'
):
if
healthcheck
is
not
None
:
raise
errors
.
InvalidVersion
(
if
version_lt
(
version
,
'1.24'
):
'Health options were only introduced in API version 1.24'
raise
errors
.
InvalidVersion
(
)
'Health options were only introduced in API version 1.24'
)
if
version_lt
(
version
,
'1.29'
)
and
'StartPeriod'
in
healthcheck
:
raise
errors
.
InvalidVersion
(
'healthcheck start period was introduced in API '
'version 1.29'
)
if
isinstance
(
command
,
six
.
string_types
):
if
isinstance
(
command
,
six
.
string_types
):
command
=
split_command
(
command
)
command
=
split_command
(
command
)
...
...
docker/types/healthcheck.py
Dosyayı görüntüle @
ce8a6ea4
...
@@ -12,12 +12,14 @@ class Healthcheck(DictType):
...
@@ -12,12 +12,14 @@ class Healthcheck(DictType):
interval
=
kwargs
.
get
(
'interval'
,
kwargs
.
get
(
'Interval'
))
interval
=
kwargs
.
get
(
'interval'
,
kwargs
.
get
(
'Interval'
))
timeout
=
kwargs
.
get
(
'timeout'
,
kwargs
.
get
(
'Timeout'
))
timeout
=
kwargs
.
get
(
'timeout'
,
kwargs
.
get
(
'Timeout'
))
retries
=
kwargs
.
get
(
'retries'
,
kwargs
.
get
(
'Retries'
))
retries
=
kwargs
.
get
(
'retries'
,
kwargs
.
get
(
'Retries'
))
start_period
=
kwargs
.
get
(
'start_period'
,
kwargs
.
get
(
'StartPeriod'
))
super
(
Healthcheck
,
self
)
.
__init__
({
super
(
Healthcheck
,
self
)
.
__init__
({
'Test'
:
test
,
'Test'
:
test
,
'Interval'
:
interval
,
'Interval'
:
interval
,
'Timeout'
:
timeout
,
'Timeout'
:
timeout
,
'Retries'
:
retries
'Retries'
:
retries
,
'StartPeriod'
:
start_period
})
})
@property
@property
...
@@ -51,3 +53,11 @@ class Healthcheck(DictType):
...
@@ -51,3 +53,11 @@ class Healthcheck(DictType):
@retries.setter
@retries.setter
def
retries
(
self
,
value
):
def
retries
(
self
,
value
):
self
[
'Retries'
]
=
value
self
[
'Retries'
]
=
value
@property
def
start_period
(
self
):
return
self
[
'StartPeriod'
]
@start_period.setter
def
start_period
(
self
,
value
):
self
[
'StartPeriod'
]
=
value
tests/integration/api_healthcheck_test.py
Dosyayı görüntüle @
ce8a6ea4
...
@@ -28,8 +28,8 @@ class HealthcheckTest(BaseAPIIntegrationTest):
...
@@ -28,8 +28,8 @@ class HealthcheckTest(BaseAPIIntegrationTest):
container
=
self
.
client
.
create_container
(
container
=
self
.
client
.
create_container
(
BUSYBOX
,
'top'
,
healthcheck
=
dict
(
BUSYBOX
,
'top'
,
healthcheck
=
dict
(
test
=
"true"
,
test
=
"true"
,
interval
=
1
*
SECOND
,
interval
=
1
*
SECOND
,
timeout
=
1
*
SECOND
,
timeout
=
1
*
SECOND
,
retries
=
1
,
retries
=
1
,
))
))
self
.
tmp_containers
.
append
(
container
)
self
.
tmp_containers
.
append
(
container
)
...
@@ -41,10 +41,27 @@ class HealthcheckTest(BaseAPIIntegrationTest):
...
@@ -41,10 +41,27 @@ class HealthcheckTest(BaseAPIIntegrationTest):
container
=
self
.
client
.
create_container
(
container
=
self
.
client
.
create_container
(
BUSYBOX
,
'top'
,
healthcheck
=
dict
(
BUSYBOX
,
'top'
,
healthcheck
=
dict
(
test
=
"false"
,
test
=
"false"
,
interval
=
1
*
SECOND
,
interval
=
1
*
SECOND
,
timeout
=
1
*
SECOND
,
timeout
=
1
*
SECOND
,
retries
=
1
,
retries
=
1
,
))
))
self
.
tmp_containers
.
append
(
container
)
self
.
tmp_containers
.
append
(
container
)
self
.
client
.
start
(
container
)
self
.
client
.
start
(
container
)
wait_on_health_status
(
self
.
client
,
container
,
"unhealthy"
)
wait_on_health_status
(
self
.
client
,
container
,
"unhealthy"
)
@helpers.requires_api_version
(
'1.29'
)
def
test_healthcheck_start_period
(
self
):
container
=
self
.
client
.
create_container
(
BUSYBOX
,
'top'
,
healthcheck
=
dict
(
test
=
"echo 'x' >> /counter.txt && "
"test `cat /counter.txt | wc -l` -ge 3"
,
interval
=
1
*
SECOND
,
timeout
=
1
*
SECOND
,
retries
=
1
,
start_period
=
3
*
SECOND
)
)
self
.
tmp_containers
.
append
(
container
)
self
.
client
.
start
(
container
)
wait_on_health_status
(
self
.
client
,
container
,
"healthy"
)
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