diff options
author | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-09-13 18:18:14 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-13 18:18:14 +0300 |
commit | 7b9ac5278bedf4ced16a1d9923ac77683395e0c4 (patch) | |
tree | eeff332676c32634f18521ad69094a2c2c31b623 /src | |
parent | fd191178a5e6887e7aaada1b87822c1cf54035ae (diff) | |
download | vyos-1x-7b9ac5278bedf4ced16a1d9923ac77683395e0c4.tar.gz vyos-1x-7b9ac5278bedf4ced16a1d9923ac77683395e0c4.zip |
container: T6701: add support to disable container network DNS support (#4052)
Add ability to set the container network with a disable-dns setting to disable
the DNS plugin that is on be default.
set container network <network> no-name-server
(cherry picked from commit 1d5625d572cc25a9d53247b7c41177f17845b052)
Co-authored-by: Dave Vogel <dave.vogel@fullpower.com>
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/container.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/conf_mode/container.py b/src/conf_mode/container.py index ded370a7a..14387cbbf 100755 --- a/src/conf_mode/container.py +++ b/src/conf_mode/container.py @@ -421,6 +421,10 @@ def generate(container): 'driver': 'host-local' } } + + if 'no_name_server' in network_config: + tmp['dns_enabled'] = False + for prefix in network_config['prefix']: net = {'subnet': prefix, 'gateway': inc_ip(prefix, 1)} tmp['subnets'].append(net) |