summaryrefslogtreecommitdiffstats
path: root/fuel-plugin-ovsnfv/deployment_scripts/puppet/manifests/ovs-install-ovsnfv-compute.pp
blob: f95cbb8202442d09515200671f13849e693b3149 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
$fuel_settings = parseyaml(file('/etc/astute.yaml'))
$master_ip = $::fuel_settings['master_ip']

if $operatingsystem == 'Ubuntu' {
  class { '::ovsdpdk':
    ovs_bridge_mappings => 'default:br-eth3',
    ovs_socket_mem      => '512',
    ovs_num_hugepages   => '256',
    compute             => 'True',
  }
} elsif $operatingsystem == 'CentOS' {
}