puppet-tripleo/manifests/host/sriov.pp
Brent Eagles adf9471138 Repair immediate VF configuration for PCI SR-IOV
Change I71edc135432ab2193741c37ce977dd11172401e6 broke the host VF
configuration that set VF counts when the puppet is applied. This patch
re-adds the ensure => present property required for proper behavior.

Change-Id: Ibd18c4f3b7f0d8cee330f94f87e7ad4ea7ceeffb
Closes-Bug: #1712903
(cherry picked from commit 1e133f3146)
2017-10-10 02:08:07 +00:00

29 lines
785 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",
udev_rules => ''
}
}
}