diff options
author | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-05-24 12:44:05 +0400 |
---|---|---|
committer | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-05-24 12:47:57 +0400 |
commit | a6daf4ece3f05600ad66fea55c5220d07a71cef1 (patch) | |
tree | 988e0e370b7c2683f10eff189f2ba7b276b24923 /mcp/reclass/classes/system/neutron/control/openvswitch | |
parent | 7b4fbdd9be1a234c345b21ebf0eafcf7f5187f26 (diff) |
[mcp] Bring in reclass system salt models
Change-Id: I1a865b7524f3a5242544e60e6b36b1092721c58b
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
Diffstat (limited to 'mcp/reclass/classes/system/neutron/control/openvswitch')
4 files changed, 127 insertions, 0 deletions
diff --git a/mcp/reclass/classes/system/neutron/control/openvswitch/cluster.yml b/mcp/reclass/classes/system/neutron/control/openvswitch/cluster.yml new file mode 100644 index 000000000..dc8e0c53f --- /dev/null +++ b/mcp/reclass/classes/system/neutron/control/openvswitch/cluster.yml @@ -0,0 +1,71 @@ +classes: +- service.keepalived.cluster.single +- service.haproxy.proxy.single +- service.neutron.control.cluster +parameters: + _param: + neutron_control_dvr: True + neutron_l3_ha: False + neutron_global_physnet_mtu: 1500 + neutron_external_mtu: 1500 + neutron_tenant_network_types: "flat,vxlan" + neutron: + server: + plugin: ml2 + global_physnet_mtu: ${_param:neutron_global_physnet_mtu} + l3_ha: ${_param:neutron_l3_ha} + dvr: ${_param:neutron_control_dvr} + backend: + engine: ml2 + tenant_network_types: "${_param:neutron_tenant_network_types}" + external_mtu: ${_param:neutron_external_mtu} + mechanism: + ovs: + driver: openvswitch + compute: + region: ${_param:openstack_region} + database: + host: ${_param:openstack_database_address} + identity: + region: ${_param:openstack_region} + message_queue: + members: + - host: ${_param:openstack_message_queue_node01_address} + - host: ${_param:openstack_message_queue_node02_address} + - host: ${_param:openstack_message_queue_node03_address} + mysql: + server: + database: + neutron: + encoding: utf8 + users: + - name: neutron + password: ${_param:mysql_neutron_password} + host: '%' + rights: all + - name: neutron + password: ${_param:mysql_neutron_password} + host: ${_param:cluster_local_address} + rights: all + haproxy: + proxy: + listen: + neutron_api: + type: openstack-service + service_name: neutron + binds: + - address: ${_param:cluster_vip_address} + port: 9696 + servers: + - name: ctl01 + host: ${_param:cluster_node01_address} + port: 9696 + params: check inter 10s fastinter 2s downinter 3s rise 3 fall 3 + - name: ctl02 + host: ${_param:cluster_node02_address} + port: 9696 + params: check inter 10s fastinter 2s downinter 3s rise 3 fall 3 + - name: ctl03 + host: ${_param:cluster_node03_address} + port: 9696 + params: check inter 10s fastinter 2s downinter 3s rise 3 fall 3 diff --git a/mcp/reclass/classes/system/neutron/control/openvswitch/dpdk.yml b/mcp/reclass/classes/system/neutron/control/openvswitch/dpdk.yml new file mode 100644 index 000000000..f7191c772 --- /dev/null +++ b/mcp/reclass/classes/system/neutron/control/openvswitch/dpdk.yml @@ -0,0 +1,4 @@ +parameters: + neutron: + server: + dpdk: True
\ No newline at end of file diff --git a/mcp/reclass/classes/system/neutron/control/openvswitch/single.yml b/mcp/reclass/classes/system/neutron/control/openvswitch/single.yml new file mode 100644 index 000000000..6601db1e9 --- /dev/null +++ b/mcp/reclass/classes/system/neutron/control/openvswitch/single.yml @@ -0,0 +1,45 @@ +classes: +- service.neutron.control.single +parameters: + _param: + neutron_control_dvr: True + neutron_l3_ha: False + neutron_global_physnet_mtu: 1500 + neutron_external_mtu: 1500 + neutron_tenant_network_types: "flat,vxlan" + neutron: + server: + plugin: ml2 + global_physnet_mtu: ${_param:neutron_global_physnet_mtu} + l3_ha: ${_param:neutron_l3_ha} + dvr: ${_param:neutron_control_dvr} + backend: + engine: ml2 + tenant_network_types: "${_param:neutron_tenant_network_types}" + external_mtu: ${_param:neutron_external_mtu} + mechanism: + ovs: + driver: openvswitch + compute: + region: ${_param:openstack_region} + database: + host: ${_param:openstack_database_address} + identity: + region: ${_param:openstack_region} + message_queue: + members: + - host: ${_param:openstack_message_queue_node01_address} + mysql: + server: + database: + neutron: + encoding: utf8 + users: + - name: neutron + password: ${_param:mysql_neutron_password} + host: '%' + rights: all + - name: neutron + password: ${_param:mysql_neutron_password} + host: ${_param:cluster_local_address} + rights: all
\ No newline at end of file diff --git a/mcp/reclass/classes/system/neutron/control/openvswitch/sriov.yml b/mcp/reclass/classes/system/neutron/control/openvswitch/sriov.yml new file mode 100644 index 000000000..38f5d29b0 --- /dev/null +++ b/mcp/reclass/classes/system/neutron/control/openvswitch/sriov.yml @@ -0,0 +1,7 @@ +parameters: + neutron: + server: + backend: + mechanism: + sriov: + driver: sriovnicswitch |