Skip to content

Commit f376700

Browse files
authored
Merge pull request containers#1104 from rjeffman/disable_dns
Add support for disable_dns, dns and ignore on network creation
2 parents 0f2c717 + 9be3ec9 commit f376700

5 files changed

+103
-0
lines changed

docs/Extensions.md

+20
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,26 @@ services:
2727
2828
For explanations of these extensions, please refer to the [Podman Documentation](https://docs.podman.io/).
2929
30+
## Network management
31+
32+
The following extension keys are available under network configuration:
33+
34+
* `x-podman.disable-dns` - Disable the DNS plugin for the network when set to 'true'.
35+
* `x-podman.dns` - Set nameservers for the network using supplied addresses (cannot be used with x-podman.disable-dns`).
36+
37+
For example, the following docker-compose.yml allows all containers on the same network to use the
38+
specified nameservers:
39+
```yml
40+
version: "3"
41+
network:
42+
my_network:
43+
x-podman.dns:
44+
- "10.1.2.3"
45+
- "10.1.2.4"
46+
```
47+
48+
For explanations of these extensions, please refer to the
49+
[Podman network create command Documentation](https://docs.podman.io/en/latest/markdown/podman-network-create.1.html).
3050

3151
## Per-network MAC-addresses
3252

Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Add support for 'x-podman.disable-dns' to allow disabling DNS plugin on defined networks.

newsfragments/x-podman.dns.feature

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Add support for 'x-podman.dns' to allow setting DNS nameservers for defined networks.

podman_compose.py

+7
Original file line numberDiff line numberDiff line change
@@ -832,6 +832,13 @@ def get_network_create_args(net_desc, proj_name, net_name):
832832
ipam_config_ls = ipam.get("config", [])
833833
if net_desc.get("enable_ipv6"):
834834
args.append("--ipv6")
835+
if net_desc.get("x-podman.disable_dns"):
836+
args.append("--disable-dns")
837+
if net_desc.get("x-podman.dns"):
838+
args.extend((
839+
"--dns",
840+
",".join(norm_as_list(net_desc.get("x-podman.dns"))),
841+
))
835842

836843
if isinstance(ipam_config_ls, dict):
837844
ipam_config_ls = [ipam_config_ls]

tests/unit/test_get_network_create_args.py

+74
Original file line numberDiff line numberDiff line change
@@ -201,3 +201,77 @@ def test_complete(self):
201201
]
202202
args = get_network_create_args(net_desc, proj_name, net_name)
203203
self.assertEqual(args, expected_args)
204+
205+
def test_disable_dns(self):
206+
net_desc = {
207+
"labels": [],
208+
"internal": False,
209+
"driver": None,
210+
"driver_opts": {},
211+
"ipam": {"config": []},
212+
"enable_ipv6": False,
213+
"x-podman.disable_dns": True,
214+
}
215+
proj_name = "test_project"
216+
net_name = "test_network"
217+
expected_args = [
218+
"create",
219+
"--label",
220+
f"io.podman.compose.project={proj_name}",
221+
"--label",
222+
f"com.docker.compose.project={proj_name}",
223+
"--disable-dns",
224+
net_name,
225+
]
226+
args = get_network_create_args(net_desc, proj_name, net_name)
227+
self.assertEqual(args, expected_args)
228+
229+
def test_dns_string(self):
230+
net_desc = {
231+
"labels": [],
232+
"internal": False,
233+
"driver": None,
234+
"driver_opts": {},
235+
"ipam": {"config": []},
236+
"enable_ipv6": False,
237+
"x-podman.dns": "192.168.1.2",
238+
}
239+
proj_name = "test_project"
240+
net_name = "test_network"
241+
expected_args = [
242+
"create",
243+
"--label",
244+
f"io.podman.compose.project={proj_name}",
245+
"--label",
246+
f"com.docker.compose.project={proj_name}",
247+
"--dns",
248+
"192.168.1.2",
249+
net_name,
250+
]
251+
args = get_network_create_args(net_desc, proj_name, net_name)
252+
self.assertEqual(args, expected_args)
253+
254+
def test_dns_list(self):
255+
net_desc = {
256+
"labels": [],
257+
"internal": False,
258+
"driver": None,
259+
"driver_opts": {},
260+
"ipam": {"config": []},
261+
"enable_ipv6": False,
262+
"x-podman.dns": ["192.168.1.2", "192.168.1.3"],
263+
}
264+
proj_name = "test_project"
265+
net_name = "test_network"
266+
expected_args = [
267+
"create",
268+
"--label",
269+
f"io.podman.compose.project={proj_name}",
270+
"--label",
271+
f"com.docker.compose.project={proj_name}",
272+
"--dns",
273+
"192.168.1.2,192.168.1.3",
274+
net_name,
275+
]
276+
args = get_network_create_args(net_desc, proj_name, net_name)
277+
self.assertEqual(args, expected_args)

0 commit comments

Comments
 (0)