fuel-library/deployment/puppet/mellanox_openstack/manifests/controller.pp
Gil Meir 93a12959c4 Adding Mellanox manifests for mellanox plugin
1. iSER configuration on cinder node.
2. Installing and configuring Mellanox plugin on compute node.

partially implements: blueprint mellanox-features-support

Change-Id: I207f7d884eeb2f063e90deb99459f546c116607c
Signed-off-by: gilmeir <gilmeir@mellanox.com>
2014-07-21 00:22:18 +03:00

12 lines
301 B
Puppet

class mellanox_openstack::controller (
$eswitch_vnic_type = 'hostdev',
$eswitch_apply_profile_patch = 'True',
) {
neutron_plugin_ml2 {
'eswitch/vnic_type': value => $eswitch_vnic_type;
'eswitch/apply_profile_patch': value => $eswitch_apply_profile_patch;
}
}