blob: b94c472d68bc4508b3b7db3405dd14e212d8babb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# == 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",
udev_rules => ''
}
}
}
|