Merge "Add codesearch.o.o node and module"

This commit is contained in:
Jenkins 2015-10-30 00:56:00 +00:00 committed by Gerrit Code Review
commit c6b5d11c80
3 changed files with 47 additions and 0 deletions

View File

@ -1072,4 +1072,15 @@ node 'odsreg.openstack.org' {
}
}
# Node-OS: trusty
node 'codesearch.openstack.org' {
class { 'openstack_project::server':
iptables_public_tcp_ports => [80],
sysadmins => hiera('sysadmins', []),
}
class { 'openstack_project::codesearch':
project_config_repo => 'https://git.openstack.org/openstack-infra/project-config',
}
}
# vim:sw=2:ts=2:expandtab:textwidth=79

View File

@ -88,6 +88,7 @@ INTEGRATION_MODULES["$OPENSTACK_GIT_ROOT/openstack-infra/puppet-github"]="origin
INTEGRATION_MODULES["$OPENSTACK_GIT_ROOT/openstack-infra/puppet-grafyaml"]="origin/master"
INTEGRATION_MODULES["$OPENSTACK_GIT_ROOT/openstack-infra/puppet-graphite"]="origin/master"
INTEGRATION_MODULES["$OPENSTACK_GIT_ROOT/openstack-infra/puppet-haveged"]="origin/master"
INTEGRATION_MODULES["$OPENSTACK_GIT_ROOT/openstack-infra/puppet-hound"]="origin/master"
INTEGRATION_MODULES["$OPENSTACK_GIT_ROOT/openstack-infra/puppet-httpd"]="origin/master"
INTEGRATION_MODULES["$OPENSTACK_GIT_ROOT/openstack-infra/puppet-iptables"]="origin/master"
INTEGRATION_MODULES["$OPENSTACK_GIT_ROOT/openstack-infra/puppet-jeepyb"]="origin/master"

View File

@ -0,0 +1,35 @@
# Class to configure hound on a node.
class openstack_project::codesearch (
$project_config_repo,
) {
class { 'project_config':
url => $project_config_repo,
}
class { 'hound':
manage_config => false,
}
include ::jeepyb
include ::logrotate
include ::pip
file { '/home/hound/config.json':
ensure => 'present',
}
exec { 'create-hound-config':
command => 'create-hound-config',
path => '/bin:/usr/bin:/usr/local/bin',
environment => "PROJECTS_YAML=${::project_config::jeepyb_project_file}",
user => 'hound',
cwd => '/home/hound',
require => [
$::project_config::config_dir,
File['/home/hound'],
],
notify => Service['hound']
}
}