Add required puppet module files and .gitreview

These files are required after the module is split out of
system-config repository.

Most of them are described in the spec:
http://specs.openstack.org/openstack-infra/infra-specs/specs/puppet-modules.html

Change-Id: I85ab9db9e77f6eb13342af440f51b433d9b6ed60
This commit is contained in:
Ramy Asselin 2014-10-29 11:18:44 -07:00
parent 8cfa887d3e
commit 3d4bd009db
5 changed files with 34 additions and 0 deletions

4
.gitreview Normal file
View File

@ -0,0 +1,4 @@
[gerrit]
host=review.openstack.org
port=29418
project=openstack-infra/puppet-jenkins.git

11
Metadata.json Normal file
View File

@ -0,0 +1,11 @@
{
"name": "openstackci-jenkins",
"version": "0.0.1",
"author": "Openstack CI",
"summary": "Puppet module for Jenkins",
"license": "Apache 2.0",
"source": "git://git.openstack.org/openstack-infra/puppet-jenkins.git",
"project_page": "http://ci.openstack.org/",
"issues_url": "https://storyboard.openstack.org/#!/search?q=puppet-jenkins",
"dependencies": []
}

8
Modulefile Normal file
View File

@ -0,0 +1,8 @@
name 'openstackci-jenkins'
version '0.0.1'
source 'git://git.openstack.org/openstack-infra/puppet-jenkins.git'
author 'Openstack CI'
license 'Apache 2.0'
summary 'Puppet module for Jenkins'
description 'This module installs and configures Jenkins.'
project_page 'http://ci.openstack.org/'

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# OpenStack Jenkins Module
This module installs and configures Jenkins

8
Rakefile Normal file
View File

@ -0,0 +1,8 @@
require 'rubygems'
require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet-lint/tasks/puppet-lint'
PuppetLint.configuration.fail_on_warnings = true
PuppetLint.configuration.send('disable_80chars')
PuppetLint.configuration.send('disable_autoloader_layout')
PuppetLint.configuration.send('disable_class_inherits_from_params_class')
PuppetLint.configuration.send('disable_class_parameter_defaults')