Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added conf option to scope wg hub to right netns #289

Merged
merged 3 commits into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions kolla/defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ neutron_dev_plugins:

# minimal config for neutron wireguard agent
neutron_wireguard_hub_endpoint: "{{ kolla_external_vip_address }}"
create_hub_in_root_netns: "{{ create_hub_in_root_netns }}"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this needs a default:

normally I would say to default it to false so that just deploying the container won't change behavior.
however, as we're the only ones deploying this, lets set it to true because it will save some steps.


# Nova
enable_nova: yes
Expand Down
1 change: 1 addition & 0 deletions kolla/node_custom_config/neutron/ml2_conf.ini
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,5 @@ key_file = /etc/neutron/ssh/id_{{ switch.name }}
{% if enable_neutron_wireguard | bool %}
[wireguard]
endpoint = {{ neutron_wireguard_hub_endpoint }}
create_hub_in_root_netns = {{ neutron_wireguard_create_hub_in_root_netns }}
{% endif %}
Loading