summaryrefslogtreecommitdiffstats
path: root/testing/puppet-fdio/manifests/params.pp
diff options
context:
space:
mode:
authorJuraj Linkeš <jlinkes@cisco.com>2016-08-15 08:10:08 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-08-15 08:10:08 +0000
commit3285c8e93ea59d98b392591ef6dfa5b1de3bb92d (patch)
tree795fe6b7263a4a3b5b06ce5f750ec883037d4346 /testing/puppet-fdio/manifests/params.pp
parent7ac44c4a1406bf060911c645f23eef18a13dc0af (diff)
parent9dd5d7bf353fe5ffd478ff811bb6b26538afe092 (diff)
Merge "puppet module added"
Diffstat (limited to 'testing/puppet-fdio/manifests/params.pp')
-rw-r--r--testing/puppet-fdio/manifests/params.pp14
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/puppet-fdio/manifests/params.pp b/testing/puppet-fdio/manifests/params.pp
new file mode 100644
index 0000000..01908c3
--- /dev/null
+++ b/testing/puppet-fdio/manifests/params.pp
@@ -0,0 +1,14 @@
+# == Class fdio::params
+#
+# This class manages the default params for the ODL class.
+#
+class fdio::params {
+ # NB: If you update the default values here, you'll also need to update:
+ # spec/spec_helper_acceptance.rb's install_odl helper fn
+ # spec/classes/fdio_spec.rb tests that use default Karaf features
+ # Else, both the Beaker and RSpec tests will fail
+ # TODO: Remove this possible source of bugs^^
+ $install_method = 'rpm'
+ $dpdk_pmd_type = 'uio_pci_generic'
+ $dpdk_pci_devs = []
+}