RETIRED, Puppet module for Nodepool
Go to file
Jenkins 2bc4e962b3 Merge "Fix variables in nodepool.default.erb template" 2015-08-18 06:14:46 +00:00
files Deploy vhost template for nodepool.o.o logs 2014-10-17 15:54:24 +11:00
manifests Merge "Add creation of secure.conf file" 2015-08-14 02:24:57 +00:00
spec Boilerplate beaker-rspec files 2015-07-28 02:05:10 -07:00
templates Merge "Fix variables in nodepool.default.erb template" 2015-08-18 06:14:46 +00:00
.gitreview Add standard puppet module files and .gitreview 2015-01-28 12:18:47 -06:00
LICENSE Add missing LICENSE file 2015-01-29 22:58:56 +00:00
README.md Add creation of secure.conf file 2015-07-30 16:28:28 +02:00
Rakefile Add standard puppet module files and .gitreview 2015-01-28 12:18:47 -06:00
metadata.json Consume puppet-diskimage_builder 2015-05-14 19:43:26 -07:00

README.md

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',
    }
  ]
}