Add infra setup for zanata

Add an entry in site.pp and a module for translate-dev so we can
deploy an initial test server.

Change-Id: I64334620665718f430ddba8dfd304a476365ce5e
This commit is contained in:
stephane 2015-03-30 12:13:59 -07:00
parent be9b8ac881
commit 11f779802b
2 changed files with 86 additions and 0 deletions

View File

@ -737,4 +737,14 @@ node 'ask.openstack.org' {
}
}
# Node-OS: trusty
node 'translate-dev.openstack.org' {
class { 'openstack_project::translate_dev':
sysadmins => hiera('sysadmins', []),
openid_url => 'https://openstackid-dev.openstack.org',
mysql_host => hiera('translate_dev_mysql_host', 'localhost'),
mysql_password => hiera('translate_dev_mysql_password', 'XXX'),
}
}
# vim:sw=2:ts=2:expandtab:textwidth=79

View File

@ -0,0 +1,76 @@
# Copyright 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: openstack_project::translate_dev
#
class openstack_project::translate_dev(
$mysql_host = 'localhost',
$mysql_port = '3306',
$mysql_user = 'zanata',
$mysql_password,
$sysadmins = [],
$openid_url = '',
$vhost_name = $::fqdn,
$ssl_cert_file = '/etc/ssl/certs/ssl-cert-snakeoil.pem',
$ssl_key_file = '/etc/ssl/private/ssl-cert-snakeoil.key',
$ssl_chain_file = '',
$ssl_cert_file_contents = '', # If left empty puppet will not create file.
$ssl_key_file_contents = '', # If left empty puppet will not create file.
$ssl_chain_file_contents = '', # If left empty puppet will not create file.
) {
class { 'openstack_project::server':
sysadmins => $sysadmins,
iptables_public_tcp_ports => [80, 443],
}
class { '::zanata':
mysql_host => $mysql_host,
mysql_port => $mysql_port,
zanata_db_username => $mysql_user,
zanata_db_password => $mysql_password,
zanata_openid_provider_url => $openid_url,
require => [
Class['openstack_project::server']
],
}
class { '::zanata::apache':
vhost_name => $vhost_name,
ssl_cert_file => $ssl_cert_file,
ssl_key_file => $ssl_key_file,
ssl_chain_file => $ssl_chain_file,
ssl_cert_file_contents => $ssl_cert_file_contents,
ssl_key_file_contents => $ssl_key_file_contents,
ssl_chain_file_contents => $ssl_chain_file_contents,
require => Class['::zanata']
}
include logrotate
logrotate::file { 'console.log':
log => '/var/log/wildfly/console.log',
options => [
'daily',
'rotate 30',
'missingok',
'dateext',
'copytruncate',
'compress',
'delaycompress',
'notifempty',
'maxage 30',
],
require => Service['wildfly'],
}
}