Add flag to enable DSCP marking
[integration/packaging/puppet-opendaylight.git] / manifests / params.pp
index eaa6ef63d3180bae311d383bb04400c46a019efe..ddfa8fab15f5eb7095adcf82ee3d0775ceea8453 100644 (file)
@@ -8,20 +8,31 @@ class opendaylight::params {
   #   spec/classes/opendaylight_spec.rb tests that use default Karaf features
   # Else, both the Beaker and RSpec tests will fail
   # TODO: Remove this possible source of bugs^^
-  $default_features = ['config', 'standard', 'region', 'package', 'kar', 'ssh', 'management']
+  $default_features = ['standard', 'wrap', 'ssh']
   $extra_features = []
-  $odl_rest_port = '8080'
+  $odl_rest_port = '8181'
   $odl_bind_ip = '0.0.0.0'
-  $rpm_repo = 'opendaylight-6-testing'
-  $deb_repo = 'ppa:odl-team/carbon'
+  $rpm_repo = 'https://nexus.opendaylight.org/content/repositories/opendaylight-fluorine-epel-7-$basearch-devel'
+  $deb_repo = 'ppa:odl-team/nitrogen'
   $log_levels = {}
   $enable_ha = false
   $ha_node_ips = []
   $ha_node_index = 0
-  $security_group_mode = 'stateful'
+  $ha_db_modules = { 'default' => false }
   $vpp_routing_node = ''
   $java_opts = '-Djava.net.preferIPv4Stack=true'
   $manage_repositories = true
   $username = 'admin'
   $password = 'admin'
+  $log_max_size = '10GB'
+  $log_max_rollover = 2
+  $snat_mechanism = 'controller'
+  $enable_tls = false
+  $tls_keystore_password = undef
+  $tls_key_file = undef
+  $tls_cert_file = undef
+  $tls_ca_cert_file = undef
+  $tls_trusted_certs = []
+  $log_mechanism = 'file'
+  $inherit_dscp_marking = false
 }