Ramy Asselin 8010f9bb0f Add support for os-client
By using os-client the nodepool.yaml file does not
need to contain any secrets.

Change-Id: I3bc873889f36e833d5755333b6ea5b2c0f32e568
2015-09-29 15:32:16 -07:00

102 lines
3.0 KiB
Puppet

# Copyright (c) 2012-2015 Hewlett-Packard Development Company, L.P.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# == Class: openstackci::nodepool
#
class openstackci::nodepool (
$mysql_root_password,
$mysql_password,
$yaml_path = '/etc/project-config/nodepool/nodepool.yaml',
$git_source_repo = 'https://git.openstack.org/openstack-infra/nodepool',
$revision = 'master',
$oscc_file_contents,
$environment = {},
$nodepool_ssh_private_key = '',
$vhost_name = $::fqdn,
$statsd_host = '',
$image_log_document_root = '/var/log/nodepool/image',
$enable_image_log_via_http = true,
$project_config_repo = '',
$jenkins_masters = [],
) {
if ! defined(Class['project_config']) {
class { 'project_config':
url => $project_config_repo,
}
}
class { '::nodepool':
mysql_root_password => $mysql_root_password,
mysql_password => $mysql_password,
nodepool_ssh_private_key => $nodepool_ssh_private_key,
git_source_repo => $git_source_repo,
revision => $revision,
vhost_name => $vhost_name,
statsd_host => $statsd_host,
image_log_document_root => $image_log_document_root,
enable_image_log_via_http => $enable_image_log_via_http,
environment => $environment,
scripts_dir => $::project_config::nodepool_scripts_dir,
elements_dir => $::project_config::nodepool_elements_dir,
require => $::project_config::config_dir,
jenkins_masters => $jenkins_masters,
}
file { '/etc/nodepool/nodepool.yaml':
ensure => present,
source => $yaml_path,
owner => 'nodepool',
group => 'root',
mode => '0400',
require => [
File['/etc/nodepool'],
User['nodepool'],
Class['project_config'],
],
}
file { '/home/nodepool/.config':
ensure => directory,
owner => 'nodepool',
group => 'nodepool',
require => [
User['nodepool'],
],
}
file { '/home/nodepool/.config/openstack':
ensure => directory,
owner => 'nodepool',
group => 'nodepool',
require => [
File['/home/nodepool/.config'],
],
}
file { '/home/nodepool/.config/openstack/clouds.yaml':
ensure => present,
owner => 'nodepool',
group => 'nodepool',
mode => '0400',
content => $oscc_file_contents,
require => [
File['/home/nodepool/.config/openstack'],
User['nodepool'],
],
}
}