-
-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #126 from johnbellone/develop
Add HWRPs for installing and managing consul.
- Loading branch information
Showing
89 changed files
with
1,109 additions
and
2,902 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
Gemfile export-ignore | ||
Berksfile export-ignore | ||
Vagrantfile export-ignore | ||
Thorfile export-ignore | ||
Guardfile export-ignore | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.gitmodules export-ignore | ||
.gitattributes export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,55 @@ | ||
# Ignore docs files | ||
_gh_pages | ||
_site | ||
.ruby-version | ||
.node-version | ||
Gemfile.lock | ||
|
||
# Numerous always-ignore extensions | ||
*.diff | ||
*.err | ||
*.orig | ||
*.log | ||
*.rej | ||
*.swo | ||
*.swp | ||
*.zip | ||
*.vi | ||
*~ | ||
*# | ||
.#* | ||
\#*# | ||
.*.sw[a-z] | ||
*.un~ | ||
pkg/ | ||
|
||
# Berkshelf | ||
.vagrant | ||
/cookbooks | ||
Berksfile.lock | ||
# OS or Editor folders | ||
.DS_Store | ||
._* | ||
Thumbs.db | ||
.cache | ||
.project | ||
.settings | ||
.tmproj | ||
*.esproj | ||
nbproject | ||
*.sublime-project | ||
*.sublime-workspace | ||
.idea | ||
|
||
# Bundler | ||
Gemfile.lock | ||
bin/* | ||
.bundle/* | ||
# Komodo | ||
*.komodoproject | ||
.komodotools | ||
|
||
# grunt-html-validation | ||
validation-status.json | ||
validation-report.json | ||
|
||
.kitchen/ | ||
.kitchen.local.yml | ||
# Folders to ignore | ||
bin | ||
node_modules | ||
tmp | ||
vendor | ||
.bundle | ||
|
||
# Chef specifics to ignore | ||
.chef | ||
.chefdk | ||
.kitchen | ||
.vagrant | ||
Berksfile.lock | ||
coverage/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--color | ||
--require spec_helper | ||
--default-path test/spec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,41 @@ | ||
--- | ||
inherit_from: .rubocop_todo.yml | ||
AlignParameters: | ||
Enabled: false | ||
|
||
Encoding: | ||
Enabled: false | ||
|
||
ClassLength: | ||
Enabled: false | ||
|
||
MethodLength: | ||
Enabled: false | ||
|
||
LineLength: | ||
Enabled: false | ||
|
||
Documentation: | ||
Enabled: false | ||
|
||
PerceivedComplexity: | ||
Enabled: false | ||
|
||
CyclomaticComplexity: | ||
Enabled: false | ||
|
||
Style/FileName: | ||
Enabled: false | ||
|
||
Style/ClassAndModuleChildren: | ||
Enabled: false | ||
|
||
Metrics/AbcSize: | ||
Enabled: false | ||
|
||
AllCops: | ||
Exclude: | ||
- 'bin/**/*' | ||
- 'vendor/**/*' | ||
- 'test/**/*' | ||
- 'spec/**/*' | ||
- 'Guardfile' | ||
- 'test/**/*_spec.rb' | ||
|
||
Style/GuardClause: | ||
Enabled: false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,14 @@ | ||
--- | ||
language: ruby | ||
notifications: | ||
slack: blpsi:eHp3Czg42iGzaTgG8sAFeD9v | ||
script: bin/rspec | ||
rvm: | ||
- 2.1 | ||
- 2.2 | ||
branches: | ||
only: | ||
- master | ||
builder_args: --jobs 7 | ||
notifications: | ||
irc: | ||
channels: | ||
- 'chat.freenode.net#bloomberg' | ||
use_notice: true | ||
skip_join: true | ||
template: | ||
- "%{message} (%{author}): %{build_url}" | ||
matrix: | ||
fast_finish: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
source 'https://supermarket.getchef.com' | ||
|
||
source 'https://supermarket.chef.io' | ||
cookbook 'chef-vault', git: 'https://github.com/johnbellone/chef-vault-cookbook' | ||
metadata | ||
|
||
group :test do | ||
cookbook "consul_spec", path: "spec/fixtures/cookbooks/consul_spec" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.