diff options
author | Christian Breunig <christian@breunig.cc> | 2023-05-06 08:02:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-06 08:02:42 +0200 |
commit | 5518738952cda46cff5c8bda7dd896871691b001 (patch) | |
tree | ee17860e82bfa355ddd8acd759372f158cd042d1 /src | |
parent | 2c5307d42e0d4cc1a81210c76a63271d66f2888b (diff) | |
parent | 3c98ddfa180a464683b841c4af97ec4c185e3e29 (diff) | |
download | vyos-1x-5518738952cda46cff5c8bda7dd896871691b001.tar.gz vyos-1x-5518738952cda46cff5c8bda7dd896871691b001.zip |
Merge pull request #1981 from c-po/equuleus
vyos.ifconfig: T2104: support adding and removing VLANs in one call.
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/container.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/container.py b/src/conf_mode/container.py index 2d7f03e7f..667d08f8c 100755 --- a/src/conf_mode/container.py +++ b/src/conf_mode/container.py @@ -361,7 +361,7 @@ def generate(container): 'name' : network, 'plugins' : [{ 'type': 'bridge', - 'bridge': f'cni-{network}', + 'bridge': f'pod-{network}', 'isGateway': True, 'ipMasq': False, 'hairpinMode': False, |