aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/init.pp
diff options
context:
space:
mode:
authorFeng Pan <fpan@redhat.com>2017-09-20 07:50:44 -0400
committerFeng Pan <fpan@redhat.com>2017-09-20 17:54:27 -0400
commit19fa56176090ca9a1dbce1dff944d8946d15b20a (patch)
tree37432599bc63f625ac9d3f326f9ce79c1a1a619c /manifests/init.pp
parentdcda81db3eb61bdf69751ce6963b564abf7b7e0c (diff)
Add tuntap/tapcli configuration support
JIRA: PUP-3 Change-Id: Ia3e00887289b7b069ac8e3e39943bed264b78982 Signed-off-by: Feng Pan <fpan@redhat.com>
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp16
1 files changed, 16 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index eda67f7..1f031e7 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -57,6 +57,19 @@
# shared memory segments to core files.
# Defaults to false
#
+# [*vpp_tuntap_enable*]
+# (optional) enable VPP tuntap driver
+# Valid values are true or false.
+# Defaults to undef
+#
+# [*vpp_tuntap_mtu*]
+# (optional) VPP tuntap interface MTU
+# Defaults to undef
+#
+# [*vpp_tapcli_mtu*]
+# (optional) VPP tapcli interface MTU
+# Defaults to undef
+#
# [*copy_kernel_nic_ip*]
# (optional) Configures VPP interface with IP settings found on its corresponding kernel NIC.
# Defaults to true
@@ -73,6 +86,9 @@ class fdio (
$vpp_vhostuser_coalesce_frames = $::fdio::params::vpp_vhostuser_coalesce_frames,
$vpp_vhostuser_coalesce_time = $::fdio::params::vpp_vhostuser_coalesce_time,
$vpp_vhostuser_dont_dump_memory = $::fdio::params::vpp_vhostuser_dont_dump_memory,
+ $vpp_tuntap_enable = $::fdio::params::vpp_tuntap_enable,
+ $vpp_tuntap_mtu = $::fdio::params::vpp_tuntap_mtu,
+ $vpp_tapcli_mtu = $::fdio::params::vpp_tapcli_mtu,
$copy_kernel_nic_ip = $::fdio::params::copy_kernel_nic_ip,
) inherits ::fdio::params {