Merge "Split out releasestatus module"
This commit is contained in:
commit
474edffa24
@ -88,6 +88,7 @@ INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-openstacki
|
||||
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-planet"]="origin/master"
|
||||
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-redis"]="origin/master"
|
||||
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-ssh"]="origin/master"
|
||||
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-releasestatus"]="origin/master"
|
||||
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-reviewday"]="origin/master"
|
||||
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-drupal"]="origin/master"
|
||||
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-mediawiki"]="origin/master"
|
||||
|
@ -1,36 +0,0 @@
|
||||
# Name of the series
|
||||
series: kilo
|
||||
|
||||
# Final release date
|
||||
releasedate: 2015-04-30
|
||||
|
||||
# Short milestone codes, with number of weeks leading to them, not including
|
||||
# the milestone week. The last one should be the release date.
|
||||
#
|
||||
# For example, Juno cycle schedule:
|
||||
# https://wiki.openstack.org/wiki/Juno_Release_Schedule
|
||||
# [6, j1] - taking in account pre-summit weeks (not including j1 week)
|
||||
# [5, j2] - 5 full weeks between j1 and j2 (not including j1 or j2 weeks)
|
||||
# [5, j3] - 5 full weeks between j2 and j3 (not including j2 or j3 weeks)
|
||||
# [5, Oct 16] - 5 weeks for rc and release, not including release week
|
||||
milestones:
|
||||
- [7, k1]
|
||||
- [6, k2]
|
||||
- [5, k3]
|
||||
- [5, Apr 30]
|
||||
|
||||
# Set of projects to consider in the report
|
||||
products:
|
||||
- nova
|
||||
- glance
|
||||
- swift
|
||||
- keystone
|
||||
- horizon
|
||||
- neutron
|
||||
- cinder
|
||||
- oslo-incubator
|
||||
- ceilometer
|
||||
- heat
|
||||
- trove
|
||||
- sahara
|
||||
- ironic
|
@ -1,2 +0,0 @@
|
||||
Host review.openstack.org
|
||||
AddressFamily inet
|
@ -1,120 +0,0 @@
|
||||
# Copyright 2013 Thierry Carrez
|
||||
#
|
||||
# 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: releasestatus
|
||||
#
|
||||
class releasestatus (
|
||||
$releasestatus_prvkey_contents = '',
|
||||
$releasestatus_pubkey_contents = '',
|
||||
$releasestatus_gerrit_ssh_key = '',
|
||||
) {
|
||||
if ! defined(Package['python-launchpadlib']) {
|
||||
package { 'python-launchpadlib':
|
||||
ensure => present,
|
||||
}
|
||||
}
|
||||
|
||||
if ! defined(Package['python-jinja2']) {
|
||||
package { 'python-jinja2':
|
||||
ensure => present,
|
||||
}
|
||||
}
|
||||
|
||||
if ! defined(Package['python-yaml']) {
|
||||
package { 'python-yaml':
|
||||
ensure => present,
|
||||
}
|
||||
}
|
||||
|
||||
group { 'releasestatus':
|
||||
ensure => present,
|
||||
}
|
||||
|
||||
user { 'releasestatus':
|
||||
ensure => present,
|
||||
home => '/var/lib/releasestatus',
|
||||
shell => '/bin/bash',
|
||||
gid => 'releasestatus',
|
||||
managehome => true,
|
||||
require => Group['releasestatus'],
|
||||
}
|
||||
|
||||
file { '/var/lib/releasestatus':
|
||||
ensure => directory,
|
||||
owner => 'releasestatus',
|
||||
group => 'releasestatus',
|
||||
mode => '0755',
|
||||
require => User['releasestatus'],
|
||||
}
|
||||
|
||||
file { '/var/lib/releasestatus/.ssh/':
|
||||
ensure => directory,
|
||||
owner => 'releasestatus',
|
||||
group => 'releasestatus',
|
||||
mode => '0700',
|
||||
require => File['/var/lib/releasestatus'],
|
||||
}
|
||||
|
||||
if $releasestatus_prvkey_contents != '' {
|
||||
file { '/var/lib/releasestatus/.ssh/id_rsa':
|
||||
owner => 'releasestatus',
|
||||
group => 'releasestatus',
|
||||
mode => '0600',
|
||||
content => $releasestatus_prvkey_contents,
|
||||
replace => true,
|
||||
require => File['/var/lib/releasestatus/.ssh/']
|
||||
}
|
||||
}
|
||||
|
||||
if $releasestatus_pubkey_contents != '' {
|
||||
file { '/var/lib/releasestatus/.ssh/id_rsa.pub':
|
||||
owner => 'releasestatus',
|
||||
group => 'releasestatus',
|
||||
mode => '0600',
|
||||
content => $releasestatus_pubkey_contents,
|
||||
replace => true,
|
||||
require => File['/var/lib/releasestatus/.ssh/']
|
||||
}
|
||||
}
|
||||
|
||||
if $releasestatus_gerrit_ssh_key != '' {
|
||||
file { '/var/lib/releasestatus/.ssh/known_hosts':
|
||||
owner => 'releasestatus',
|
||||
group => 'releasestatus',
|
||||
mode => '0600',
|
||||
content => "review.openstack.org ${releasestatus_gerrit_ssh_key}",
|
||||
replace => true,
|
||||
require => File['/var/lib/releasestatus/.ssh/']
|
||||
}
|
||||
}
|
||||
|
||||
file { '/var/lib/releasestatus/.ssh/config':
|
||||
owner => 'releasestatus',
|
||||
group => 'releasestatus',
|
||||
mode => '0600',
|
||||
source => 'puppet:///modules/releasestatus/ssh_config',
|
||||
replace => true,
|
||||
require => File['/var/lib/releasestatus/.ssh/']
|
||||
}
|
||||
|
||||
vcsrepo { '/var/lib/releasestatus/releasestatus':
|
||||
ensure => latest,
|
||||
provider => git,
|
||||
source => 'https://git.openstack.org/openstack-infra/releasestatus',
|
||||
revision => 'master',
|
||||
require => File['/var/lib/releasestatus'],
|
||||
}
|
||||
}
|
||||
|
||||
# vim:sw=2:ts=2:expandtab:textwidth=79
|
@ -1,46 +0,0 @@
|
||||
# Copyright 2013 Thierry Carrez
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
# == Define: releasestatus
|
||||
#
|
||||
define releasestatus::site(
|
||||
$configfile = '',
|
||||
$httproot = '',
|
||||
) {
|
||||
|
||||
file { "/var/lib/releasestatus/${configfile}":
|
||||
mode => '0444',
|
||||
source => "puppet:///modules/releasestatus/${configfile}",
|
||||
require => File['/var/lib/releasestatus'],
|
||||
}
|
||||
|
||||
file { $httproot:
|
||||
ensure => directory,
|
||||
owner => 'releasestatus',
|
||||
group => 'releasestatus',
|
||||
mode => '0755',
|
||||
source => '/var/lib/releasestatus/releasestatus/static',
|
||||
recurse => remote,
|
||||
require => Vcsrepo['/var/lib/releasestatus/releasestatus'],
|
||||
}
|
||||
|
||||
cron { "update releasestatus ${configfile}":
|
||||
command => "python /var/lib/releasestatus/releasestatus/releasestatus.py /var/lib/releasestatus/${configfile} > ${httproot}/new.html && mv ${httproot}/new.html ${httproot}/index.html",
|
||||
minute => '*/20',
|
||||
user => 'releasestatus',
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
# vim:sw=2:ts=2:expandtab:textwidth=79
|
Loading…
x
Reference in New Issue
Block a user