
Instead of keeping a local copy of spec_helper_acceptance.rb and requiring updates to all modules for any change, we can move it into the common helper gem and require it from there. This will make it easier to create and review changes that affect all puppet modules. Also change the Gemfile to look for the gem in the local workspace if running in a zuul environment. Change-Id: I17643139de1e79403dce09a5c5d5e66908b5c8d9
OpenStack Nodepool Module
Overview
Configures Nodepool node.
class { '::nodepool':
mysql_root_password => 'xxx',
mysql_password => 'xxx',
nodepool_ssh_private_key => 'optional_key_content',
environment => {
optional_setting_1 => 'optional_value_1',
optional_setting_2 => 'optional_value_2',
},
jenkins_masters => [
{
name => 'jenkins_name'
user => 'jenkins_user',
apikey => 'jenkins_pass',
credentials => 'jenkins_credentials_id',
url => 'jenkins_url',
}
]
}
Description