f95cbb8202442d09515200671f13849e693b3149
[ovsnfv.git] / fuel-plugin-ovsnfv / deployment_scripts / puppet / manifests / ovs-install-ovsnfv-compute.pp
1 $fuel_settings = parseyaml(file('/etc/astute.yaml'))
2 $master_ip = $::fuel_settings['master_ip']
3
4 if $operatingsystem == 'Ubuntu' {
5   class { '::ovsdpdk':
6     ovs_bridge_mappings => 'default:br-eth3',
7     ovs_socket_mem      => '512',
8     ovs_num_hugepages   => '256',
9     compute             => 'True',
10   }
11 } elsif $operatingsystem == 'CentOS' {
12 }