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:
parent
5551c9925f
commit
921642edb8
4
.gitreview
Normal file
4
.gitreview
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
[gerrit]
|
||||||
|
host=review.openstack.org
|
||||||
|
port=29418
|
||||||
|
project=stackforge/cookbook-monasca-thresh
|
24
.rubocop.yml
Normal file
24
.rubocop.yml
Normal 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
|
11
Gemfile
Normal file
11
Gemfile
Normal 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
5
Strainerfile
Normal 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
|
@ -1 +1,3 @@
|
|||||||
|
# encoding: UTF-8
|
||||||
|
#
|
||||||
default[:mon_thresh][:data_bag] = 'mon_thresh'
|
default[:mon_thresh][:data_bag] = 'mon_thresh'
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
|
# encoding: UTF-8
|
||||||
|
#
|
||||||
name 'mon_thresh'
|
name 'mon_thresh'
|
||||||
maintainer "Monitoring Team"
|
maintainer 'Monitoring Team'
|
||||||
maintainer_email "hpcs-mon@hp.com"
|
maintainer_email 'hpcs-mon@hp.com'
|
||||||
license 'All rights reserved'
|
license 'All rights reserved'
|
||||||
description 'Installs/Configures mon_thresh'
|
description 'Installs/Configures mon_thresh'
|
||||||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
|
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
|
# encoding: UTF-8
|
||||||
|
#
|
||||||
# The user/group thresh are created by the package, as well as /etc/mon/
|
# 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
|
action :upgrade
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -7,8 +9,8 @@ service 'mon-thresh' do
|
|||||||
action :enable
|
action :enable
|
||||||
end
|
end
|
||||||
|
|
||||||
# todo - an encrypted credentials data bag
|
# TODO: an encrypted credentials data bag
|
||||||
credentials = { 'mysql' => { 'user' => 'thresh', 'password' => 'password'}}
|
credentials = { 'mysql' => { 'user' => 'thresh', 'password' => 'password' } }
|
||||||
settings = data_bag_item(node[:mon_thresh][:data_bag], 'mon_thresh')
|
settings = data_bag_item(node[:mon_thresh][:data_bag], 'mon_thresh')
|
||||||
|
|
||||||
template '/etc/mon/mon-thresh-config.yml' do
|
template '/etc/mon/mon-thresh-config.yml' do
|
||||||
@ -18,8 +20,8 @@ template '/etc/mon/mon-thresh-config.yml' do
|
|||||||
mode '640'
|
mode '640'
|
||||||
source 'mon-thresh-config.yml.erb'
|
source 'mon-thresh-config.yml.erb'
|
||||||
variables(
|
variables(
|
||||||
:credentials => credentials,
|
credentials: credentials,
|
||||||
:settings => settings
|
settings: settings
|
||||||
)
|
)
|
||||||
notifies :restart, "service[mon-thresh]"
|
notifies :restart, 'service[mon-thresh]'
|
||||||
end
|
end
|
||||||
|
2
spec/empty.rb
Normal file
2
spec/empty.rb
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# encoding: UTF-8
|
||||||
|
# No unit tests at this time.
|
Loading…
Reference in New Issue
Block a user