aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Polenchuk <mpolenchuk@mirantis.com>2017-12-11 13:49:38 +0400
committerMichael Polenchuk <mpolenchuk@mirantis.com>2017-12-11 13:49:38 +0400
commitc3316c713c936b154b979aa985a400f4b791c0cb (patch)
tree1f5c133e168831a01dd352f0f40d1d31b44b4d30
parent08bde71385047eefcd7ac6aa211df5a83c145bdb (diff)
[baremetal] Migrate public bridge to ovs
Get rid of "ovs-to-linux" links, instead of this setup native ovs bridge for public interface and link it with neutron external bridge. Change-Id: I483881e78f22fc035107a622307d95761c4a5667 Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com> (cherry picked from commit bcba227e4947bf1e6976b2a743b87c28ae9645c9)
-rw-r--r--mcp/reclass/classes/cluster/baremetal-mcp-ocata-common/openstack_compute_init.yml.j235
m---------mcp/reclass/classes/system0
2 files changed, 25 insertions, 10 deletions
diff --git a/mcp/reclass/classes/cluster/baremetal-mcp-ocata-common/openstack_compute_init.yml.j2 b/mcp/reclass/classes/cluster/baremetal-mcp-ocata-common/openstack_compute_init.yml.j2
index 687777b2c..cad407f57 100644
--- a/mcp/reclass/classes/cluster/baremetal-mcp-ocata-common/openstack_compute_init.yml.j2
+++ b/mcp/reclass/classes/cluster/baremetal-mcp-ocata-common/openstack_compute_init.yml.j2
@@ -27,6 +27,8 @@
{%- set vlan_mgmt = conf['net_config']['mgmt']['vlan'] -%}
{%- set vlan_private = conf['net_config']['private']['vlan'] -%}
{%- set vlan_public = conf['net_config']['public']['vlan'] -%}
+
+ {%- set gateway_public = conf['net_config']['public']['gateway'] -%}
{%- else -%}
{%- set nic_admin = 'enp6s0' -%}
{%- set nic_mgmt = 'enp6s0' -%}
@@ -90,18 +92,31 @@ parameters:
enabled: true
type: ovs_bridge
mtu: ${_param:interface_mtu}
- float-to-ex:
- enabled: true
- type: ovs_port
- mtu: ${_param:interface_mtu}
- bridge: br-floating
br-ex:
enabled: true
- type: bridge
+ type: ovs_bridge
mtu: ${_param:interface_mtu}
address: ${_param:external_address}
netmask: 255.255.255.0
- use_interfaces:
- - {{ nic_public }}{% if vlan_public and vlan_public != 'native' %}.{{ vlan_public }}{% endif %}
- use_ovs_ports:
- - float-to-ex
+ proto: static
+ gateway: {{ gateway_public }}
+ floating-to-ex:
+ enabled: true
+ type: ovs_port
+ port_type: patch
+ bridge: br-floating
+ peer: ex-to-floating
+ ex-to-floating:
+ enabled: true
+ type: ovs_port
+ port_type: patch
+ bridge: br-ex
+ peer: floating-to-ex
+ public_ovs_interface:
+ enabled: true
+ name: {{ nic_public }}{% if vlan_public and vlan_public != 'native' %}.{{ vlan_public }}{% endif %}
+ proto: manual
+ ovs_port_type: OVSPort
+ type: ovs_port
+ ovs_bridge: br-ex
+ bridge: br-ex
diff --git a/mcp/reclass/classes/system b/mcp/reclass/classes/system
-Subproject 3177fc88357ef2ac21c09509d4210245c37a4f6
+Subproject 0a17807f39aac95f9e0de8643f64e5116bdd1a1