Skip to content
Snippets Groups Projects
Commit d9d66adb authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Add support for neutron provider networks"

parents e8e459b7 28039504
No related branches found
No related tags found
No related merge requests found
...@@ -16,9 +16,10 @@ compute_network_interfaces: > ...@@ -16,9 +16,10 @@ compute_network_interfaces: >
# List of default networks to which compute nodes are attached. # List of default networks to which compute nodes are attached.
compute_default_network_interfaces: > compute_default_network_interfaces: >
{{ [provision_oc_net_name, {{ ([provision_oc_net_name,
internal_net_name, internal_net_name,
storage_net_name] | unique | list }} storage_net_name] +
(external_net_names if kolla_enable_neutron_provider_networks | bool else [])) | unique | list }}
# List of extra networks to which compute nodes are attached. # List of extra networks to which compute nodes are attached.
compute_extra_network_interfaces: [] compute_extra_network_interfaces: []
......
...@@ -324,6 +324,7 @@ kolla_enable_monasca: "no" ...@@ -324,6 +324,7 @@ kolla_enable_monasca: "no"
kolla_enable_murano: "no" kolla_enable_murano: "no"
kolla_enable_neutron: "yes" kolla_enable_neutron: "yes"
kolla_enable_neutron_lbaas: "no" kolla_enable_neutron_lbaas: "no"
kolla_enable_neutron_provider_networks: "no"
kolla_enable_nova: "yes" kolla_enable_nova: "yes"
kolla_enable_osprofiler: "no" kolla_enable_osprofiler: "no"
kolla_enable_sahara: "no" kolla_enable_sahara: "no"
......
...@@ -72,7 +72,7 @@ ...@@ -72,7 +72,7 @@
# Configure virtual ethernet patch links to connect the workload provision # Configure virtual ethernet patch links to connect the workload provision
# and external network bridges to the Neutron OVS bridge. # and external network bridges to the Neutron OVS bridge.
- name: Ensure OVS patch links exist - name: Ensure OVS patch links exist
hosts: network hosts: network:compute
tags: tags:
- config - config
- network - network
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment