RETIRED, Puppet module for Nodepool
Go to file
Mikhail S Medvedev 3505c90fa5 Fix periodic log cleanup
'*.log' does not match filename postfixed with date, as most of them
are, e.g. dib.devstack-fedora21-dib.log.2016-01-11_14. Add an
additional filter to match that case.

The cleanup was added in Iee55717bc5fbf88d739a4124f62f76d193cf3b75.

Change-Id: I2a796ee1e9a9cb7f7ea83312227311c9515f09d1
2016-02-08 11:41:45 -06:00
files Colocate a builder-worker with the service 2016-01-29 10:12:13 -08:00
manifests Fix periodic log cleanup 2016-02-08 11:41:45 -06:00
spec Fix target path for regular git clone during tests 2015-08-19 16:40:12 -07:00
templates Colocate a builder-worker with the service 2016-01-29 10:12:13 -08:00
.gitignore Add Gemfile and puppet 4 checks 2015-08-25 11:07:48 -07:00
.gitreview Add standard puppet module files and .gitreview 2015-01-28 12:18:47 -06:00
Gemfile Add Gemfile and puppet 4 checks 2015-08-25 11:07:48 -07: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',
    }
  ]
}