Update Karaf and Tomcat templates from 2.3 to 3.0
[integration/packaging/puppet-opendaylight.git] / manifests / params.pp
1 # == Class opendaylight::params
2 #
3 # This class manages the default params for the ODL class.
4 #
5 class opendaylight::params {
6   # NB: If you update the default values here, you'll also need to update:
7   #   spec/spec_helper_acceptance.rb's install_odl helper fn
8   #   spec/classes/opendaylight_spec.rb tests that use default Karaf features
9   # Else, both the Beaker and RSpec tests will fail
10   # TODO: Remove this possible source of bugs^^
11   $default_features = ['config', 'standard', 'region', 'package', 'kar', 'ssh', 'management']
12   $extra_features = []
13   $odl_rest_port = '8282'
14   $install_method = 'rpm'
15   $tarball_url = 'https://nexus.opendaylight.org/content/groups/public/org/opendaylight/integration/distribution-karaf/0.3.0-Lithium/distribution-karaf-0.3.0-Lithium.tar.gz'
16   $unitfile_url = 'https://github.com/dfarrell07/opendaylight-systemd/archive/master/opendaylight-unitfile.tar.gz'
17   $odl_rest_port = '8080'
18 }