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
cea73760
Kaydet (Commit)
cea73760
authored
Tem 25, 2016
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Send LinkLocalIPs as part of IPAMConfig dictionary
Signed-off-by:
Joffrey F
<
joffrey@docker.com
>
üst
30644d8a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
4 deletions
+25
-4
utils.py
docker/utils/utils.py
+4
-4
network_test.py
tests/integration/network_test.py
+21
-0
No files found.
docker/utils/utils.py
Dosyayı görüntüle @
cea73760
...
...
@@ -894,15 +894,15 @@ def create_endpoint_config(version, aliases=None, links=None,
if
ipv6_address
:
ipam_config
[
'IPv6Address'
]
=
ipv6_address
if
ipam_config
:
endpoint_config
[
'IPAMConfig'
]
=
ipam_config
if
link_local_ips
is
not
None
:
if
version_lt
(
version
,
'1.24'
):
raise
errors
.
InvalidVersion
(
'link_local_ips is not supported for API version < 1.24'
)
endpoint_config
[
'LinkLocalIPs'
]
=
link_local_ips
ipam_config
[
'LinkLocalIPs'
]
=
link_local_ips
if
ipam_config
:
endpoint_config
[
'IPAMConfig'
]
=
ipam_config
return
endpoint_config
...
...
tests/integration/network_test.py
Dosyayı görüntüle @
cea73760
...
...
@@ -249,6 +249,27 @@ class TestNetworks(helpers.BaseTestCase):
'2001:389::f00d'
)
@requires_api_version
(
'1.24'
)
def
test_create_with_linklocal_ips
(
self
):
container
=
self
.
client
.
create_container
(
'busybox'
,
'top'
,
networking_config
=
self
.
client
.
create_networking_config
(
{
'bridge'
:
self
.
client
.
create_endpoint_config
(
link_local_ips
=
[
'169.254.8.8'
]
)
}
),
host_config
=
self
.
client
.
create_host_config
(
network_mode
=
'bridge'
)
)
self
.
tmp_containers
.
append
(
container
)
self
.
client
.
start
(
container
)
container_data
=
self
.
client
.
inspect_container
(
container
)
net_cfg
=
container_data
[
'NetworkSettings'
][
'Networks'
][
'bridge'
]
assert
'IPAMConfig'
in
net_cfg
assert
'LinkLocalIPs'
in
net_cfg
[
'IPAMConfig'
]
assert
net_cfg
[
'IPAMConfig'
][
'LinkLocalIPs'
]
==
[
'169.254.8.8'
]
@requires_api_version
(
'1.22'
)
def
test_create_with_links
(
self
):
net_name
,
net_id
=
self
.
create_network
()
...
...
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