eec3bba44b
This patch shall create VFs via the PCI SYS interface. Default value : $::os_service_default Sample Format : ['eth0:4','eth2:128'] For values as in sample format, the sriov_numvfs config files for eth0 and eth2 will have the values 4 and 128 respectively The SR-IOV numvfs configuration shall be persisted in /sbin/ifup-local so that, during the bootup of the compute nodes, the numvfs configuration will be restored. Change-Id: I7450b904475bdf46498d9af633416b3eba12f761 Implements: blueprint tripleo-sriov Signed-off-by: karthik s <ksundara@redhat.com>
28 lines
757 B
Puppet
28 lines
757 B
Puppet
# == Class: tripleo::host::sriov
|
|
#
|
|
# Configures host configuration for the SR-IOV interfaces
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*number_of_vfs*]
|
|
# (optional) List of <physical_network>:<number_of_vfs> specifying the number
|
|
# VFs to be exposed per physical interface.
|
|
# For example, to configure two interface with number of VFs, specify
|
|
# it as ['eth1:4','eth2:10']
|
|
# Defaults to []
|
|
#
|
|
class tripleo::host::sriov (
|
|
$number_of_vfs = [],
|
|
) {
|
|
|
|
if !empty($number_of_vfs) {
|
|
sriov_vf_config { $number_of_vfs: ensure => present }
|
|
|
|
# the numvfs configuration needs to be persisted for every boot
|
|
tripleo::host::sriov::numvfs_persistence {'persistent_numvfs':
|
|
vf_defs => $number_of_vfs,
|
|
content_string => "#!/bin/bash\n"
|
|
}
|
|
}
|
|
}
|