Get initial build to work.

Add .gitreview, Gemfile, .rubocop.yml, Berksfile, Strainerfile

Fixed style errors.

Added empty unit test so chef-unit passes until we get real unit tests

Change-Id: Ifac43dd25c20f67cbd699f50e01c4e157342e87d
This commit is contained in:
Craig Bryant 2014-07-15 15:38:44 -06:00
parent 5551c9925f
commit 921642edb8
9 changed files with 61 additions and 8 deletions

4
.gitreview Normal file
View File

@ -0,0 +1,4 @@
[gerrit]
host=review.openstack.org
port=29418
project=stackforge/cookbook-monasca-thresh

24
.rubocop.yml Normal file
View File

@ -0,0 +1,24 @@
AllCops:
Includes:
- metadata.rb
- Gemfile
- attributes/**
- libraries/**
- providers/**
- recipes/**
- resources/**
- spec/**
Encoding:
Exclude:
- metadata.rb
- Gemfile
NumericLiterals:
Enabled: false
LineLength:
Enabled: false
WordArray:
MinSize: 3

1
Berksfile Normal file
View File

@ -0,0 +1 @@
metadata

11
Gemfile Normal file
View File

@ -0,0 +1,11 @@
source 'https://rubygems.org'
gem 'chef', '~> 11.8'
gem 'json', '<= 1.7.7' # chef 11 dependency
gem 'berkshelf', '~> 2.0.18'
gem 'hashie', '~> 2.0'
gem 'chefspec', '~> 3.4.0'
gem 'rspec', '~> 2.14.1'
gem 'foodcritic', '~> 3.0.3'
gem 'strainer'
gem 'rubocop', '~> 0.18.1'

5
Strainerfile Normal file
View File

@ -0,0 +1,5 @@
# Strainerfile
rubocop: rubocop $SANDBOX/$COOKBOOK
knife test: knife cookbook test $COOKBOOK
foodcritic: foodcritic -f any -t ~FC003 -t ~FC023 $SANDBOX/$COOKBOOK
chefspec: rspec $SANDBOX/$COOKBOOK/spec

View File

@ -1 +1,3 @@
# encoding: UTF-8
#
default[:mon_thresh][:data_bag] = 'mon_thresh'

View File

@ -1,6 +1,8 @@
# encoding: UTF-8
#
name 'mon_thresh'
maintainer "Monitoring Team"
maintainer_email "hpcs-mon@hp.com"
maintainer 'Monitoring Team'
maintainer_email 'hpcs-mon@hp.com'
license 'All rights reserved'
description 'Installs/Configures mon_thresh'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))

View File

@ -1,5 +1,7 @@
# encoding: UTF-8
#
# The user/group thresh are created by the package, as well as /etc/mon/
package 'mon-thresh' do #The package depends on openjdk-7-jre-headless
package 'mon-thresh' do # The package depends on openjdk-7-jre-headless
action :upgrade
end
@ -7,8 +9,8 @@ service 'mon-thresh' do
action :enable
end
# todo - an encrypted credentials data bag
credentials = { 'mysql' => { 'user' => 'thresh', 'password' => 'password'}}
# TODO: an encrypted credentials data bag
credentials = { 'mysql' => { 'user' => 'thresh', 'password' => 'password' } }
settings = data_bag_item(node[:mon_thresh][:data_bag], 'mon_thresh')
template '/etc/mon/mon-thresh-config.yml' do
@ -18,8 +20,8 @@ template '/etc/mon/mon-thresh-config.yml' do
mode '640'
source 'mon-thresh-config.yml.erb'
variables(
:credentials => credentials,
:settings => settings
credentials: credentials,
settings: settings
)
notifies :restart, "service[mon-thresh]"
notifies :restart, 'service[mon-thresh]'
end

2
spec/empty.rb Normal file
View File

@ -0,0 +1,2 @@
# encoding: UTF-8
# No unit tests at this time.