b70e038fe5
... because it was deprecated during Yoga cycle by [1].
[1] fb9a08d972
Change-Id: I16ed985cc1eee3c923bcd1e5ecdc2266658bed8c
188 lines
5.4 KiB
Puppet
188 lines
5.4 KiB
Puppet
#
|
|
# Configure OVS to use DPDK
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*memory_channels*]
|
|
# (optional) The number of memory channels to use as an integer.
|
|
#
|
|
# [*host_core_list*]
|
|
# (optional) The list of cores to be used by the lcore threads.
|
|
# The host_core_list is a string with format as <c1>[-c2][,c3[-c4],...]
|
|
# where c1, c2, etc are core indexes between 0 and 128.
|
|
# For example, to configure 3 cores the value should be "0-2"
|
|
#
|
|
# [*package_ensure*]
|
|
# (Optional) State of the openvswitch package
|
|
# Defaults to 'present'.
|
|
#
|
|
# [*pmd_core_list*]
|
|
# (optional) The list of cores to be used by the DPDK PMD threads.
|
|
# The pmd_core_list is a string with format as <c1>[-c2][,c3[-c4],...] where
|
|
# c1, c2, etc are core indexes between 0 and 128
|
|
# For example, to configure 3 cores the value should be "0-2"
|
|
#
|
|
# [*socket_mem*]
|
|
# (Optional) Set the memory to be allocated on each socket
|
|
# The socket_mem is a string with comma separated memory list in MB in the
|
|
# order of socket numbers. For example, to allocate memory of 1GB for
|
|
# socket 1 and no allocation for socket 0, the value should be "0,1024"
|
|
# Defaults to undef.
|
|
#
|
|
# [*socket_limit*]
|
|
# (Optional) Limits the maximum amount of memory that can be used from
|
|
# the hugepage pool, on a per-socket basis.
|
|
# Defaults to undef.
|
|
#
|
|
# [*enable_hw_offload*]
|
|
# (optional) Configure OVS to use
|
|
# Hardware Offload. This feature is
|
|
# supported from ovs 2.8.0.
|
|
# Defaults to false.
|
|
#
|
|
# [*disable_emc*]
|
|
# (optional) Configure OVS to disable EMC.
|
|
# Defaults to false
|
|
#
|
|
# [*vlan_limit*]
|
|
# (optional) Number of vlan layers allowed.
|
|
# Default to undef
|
|
#
|
|
# [*revalidator_cores*]
|
|
# (Optional) Number of cores to be used for OVS Revalidator threads.
|
|
#
|
|
# [*handler_cores*]
|
|
# (Optional) Number of cores to be used for OVS handler threads.
|
|
#
|
|
# [*enable_tso*]
|
|
# (Optional) Enable TSO support.
|
|
# Defaults to false.
|
|
#
|
|
# [*vs_config*]
|
|
# (optional) allow configuration of arbitrary vswitch configurations.
|
|
# The value is an hash of vs_config resources. Example:
|
|
# { 'other_config:foo' => { value => 'baa' } }
|
|
# NOTE: that the configuration MUST NOT be already handled by this module
|
|
# or Puppet catalog compilation will fail with duplicate resources.
|
|
#
|
|
class vswitch::dpdk (
|
|
$memory_channels = undef,
|
|
$host_core_list = undef,
|
|
$package_ensure = 'present',
|
|
$pmd_core_list = undef,
|
|
$socket_mem = undef,
|
|
$socket_limit = undef,
|
|
$enable_hw_offload = false,
|
|
$disable_emc = false,
|
|
$vlan_limit = undef,
|
|
$revalidator_cores = undef,
|
|
$handler_cores = undef,
|
|
$enable_tso = false,
|
|
$vs_config = {},
|
|
) {
|
|
|
|
include vswitch::params
|
|
validate_legacy(Hash, 'validate_hash', $vs_config)
|
|
kmod::load { 'vfio-pci': }
|
|
|
|
if $::osfamily != 'Redhat' {
|
|
fail( "${::osfamily} not yet supported for dpdk installation by puppet-vswitch")
|
|
}
|
|
|
|
package { $::vswitch::params::ovs_dpdk_package_name:
|
|
ensure => $package_ensure,
|
|
before => Service['openvswitch'],
|
|
tag => 'openvswitch',
|
|
}
|
|
|
|
$pmd_core_mask = range_to_mask($pmd_core_list)
|
|
$dpdk_lcore_mask = range_to_mask($host_core_list)
|
|
if $memory_channels and !empty($memory_channels) {
|
|
$memory_channels_conf = "-n ${memory_channels}"
|
|
}
|
|
else {
|
|
$memory_channels_conf = undef
|
|
}
|
|
|
|
$dpdk_configs = {
|
|
'other_config:dpdk-extra' => { value => $memory_channels_conf},
|
|
'other_config:dpdk-socket-mem' => { value => join(any2array($socket_mem), ',')},
|
|
'other_config:dpdk-socket-limit' => { value => join(any2array($socket_limit), ',')},
|
|
'other_config:dpdk-lcore-mask' => { value => $dpdk_lcore_mask},
|
|
'other_config:pmd-cpu-mask' => { value => $pmd_core_mask},
|
|
'other_config:n-revalidator-threads' => { value => $revalidator_cores},
|
|
'other_config:n-handler-threads' => { value => $handler_cores},
|
|
}
|
|
|
|
$dpdk_dependencies = {
|
|
wait => false,
|
|
notify => Vs_config['other_config:dpdk-init'],
|
|
}
|
|
|
|
if $enable_hw_offload {
|
|
vs_config { 'other_config:hw-offload':
|
|
value => true,
|
|
restart => true,
|
|
wait => true,
|
|
}
|
|
} else {
|
|
vs_config { 'other_config:hw-offload':
|
|
ensure => absent,
|
|
restart => true,
|
|
wait => true,
|
|
}
|
|
}
|
|
|
|
if $disable_emc {
|
|
vs_config { 'other_config:emc-insert-inv-prob':
|
|
value => 0,
|
|
wait => false,
|
|
}
|
|
} else {
|
|
vs_config { 'other_config:emc-insert-inv-prob':
|
|
ensure => absent,
|
|
wait => false,
|
|
}
|
|
}
|
|
|
|
vs_config { 'other_config:vlan-limit':
|
|
value => $vlan_limit,
|
|
wait => true,
|
|
}
|
|
|
|
if $enable_tso {
|
|
vs_config { 'other_config:userspace-tso-enable':
|
|
value => $enable_tso,
|
|
wait => false,
|
|
}
|
|
} else {
|
|
vs_config { 'other_config:userspace-tso-enable':
|
|
ensure => absent,
|
|
wait => false,
|
|
}
|
|
}
|
|
|
|
vs_config { 'other_config:dpdk-init':
|
|
value => true,
|
|
wait => true,
|
|
}
|
|
|
|
service { 'openvswitch':
|
|
ensure => true,
|
|
enable => true,
|
|
name => $::vswitch::params::ovs_service_name,
|
|
}
|
|
|
|
# NOTE(tkajinam): This resource is defined to restart the openvswitch services
|
|
# when any vs_config resource with restart => true is enabled.
|
|
exec { 'restart openvswitch':
|
|
path => ['/sbin', '/usr/sbin', '/bin', '/usr/bin'],
|
|
command => "systemctl -q restart ${::vswitch::params::ovs_service_name}.service",
|
|
refreshonly => true,
|
|
}
|
|
|
|
create_resources('vs_config', $dpdk_configs, $dpdk_dependencies)
|
|
create_resources('vs_config', $vs_config)
|
|
|
|
}
|