summaryrefslogtreecommitdiffstats
path: root/manifests/host/sriov.pp
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-08-29 23:29:27 +0000
committerGerrit Code Review <review@openstack.org>2016-08-29 23:29:27 +0000
commit1047dba66ea9cadb4bc702eae5c0bc362bbc4ccc (patch)
treedff81d55c7f89dac4c619d4a56cd4491facea0d8 /manifests/host/sriov.pp
parentd3491b5351183a16d2637c3e10afa5e66ee316ab (diff)
parenteec3bba44b5a7e09dba4d427bd0d3d71a4956a7a (diff)
Merge "Configure the numvfs for SRIOV interfaces"
Diffstat (limited to 'manifests/host/sriov.pp')
-rw-r--r--manifests/host/sriov.pp27
1 files changed, 27 insertions, 0 deletions
diff --git a/manifests/host/sriov.pp b/manifests/host/sriov.pp
new file mode 100644
index 0000000..a30db42
--- /dev/null
+++ b/manifests/host/sriov.pp
@@ -0,0 +1,27 @@
+# == 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"
+ }
+ }
+}