This repository has been archived by the owner on Jan 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
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 #630 from ripienaar/0180
(misc) Release 0.18.0
- Loading branch information
Showing
18 changed files
with
149 additions
and
250 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ metadata :name => "bolt_tasks", | |
:description => "Downloads and runs Puppet Tasks", | ||
:author => "R.I.Pienaar <[email protected]>", | ||
:license => "Apache-2.0", | ||
:version => "0.17.3", | ||
:version => "0.18.0", | ||
:url => "https://choria.io", | ||
:timeout => 60 | ||
|
||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"description": "Downloads and runs Puppet Tasks", | ||
"author": "R.I.Pienaar <[email protected]>", | ||
"license": "Apache-2.0", | ||
"version": "0.17.3", | ||
"version": "0.18.0", | ||
"url": "https://choria.io", | ||
"timeout": 60 | ||
}, | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ metadata :name => "choria_util", | |
:description => "Choria Utilities", | ||
:author => "R.I.Pienaar <[email protected]>", | ||
:license => "Apache-2.0", | ||
:version => "0.17.3", | ||
:version => "0.18.0", | ||
:url => "https://choria.io", | ||
:timeout => 20 | ||
|
||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"description": "Choria Utilities", | ||
"author": "R.I.Pienaar <[email protected]>", | ||
"license": "Apache-2.0", | ||
"version": "0.17.3", | ||
"version": "0.18.0", | ||
"url": "https://choria.io", | ||
"timeout": 20 | ||
}, | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ metadata :name => "rpcutil", | |
:description => "General helpful actions that expose stats and internals to SimpleRPC clients", | ||
:author => "R.I.Pienaar <[email protected]>", | ||
:license => "Apache License, Version 2.0", | ||
:version => "0.17.3", | ||
:version => "0.18.0", | ||
:url => "https://docs.puppetlabs.com/mcollective/", | ||
:timeout => 10 | ||
|
||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"description": "General helpful actions that expose stats and internals to SimpleRPC clients", | ||
"author": "R.I.Pienaar <[email protected]>", | ||
"license": "Apache License, Version 2.0", | ||
"version": "0.17.3", | ||
"version": "0.18.0", | ||
"url": "https://docs.puppetlabs.com/mcollective/", | ||
"timeout": 10 | ||
}, | ||
|
@@ -217,7 +217,7 @@ | |
"default": null, | ||
"optional": false, | ||
"validation": "^[\\w\\-\\.]+$", | ||
"maxlength": 40 | ||
"maxlength": 256 | ||
} | ||
}, | ||
"output": { | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ metadata :name => "scout", | |
:description => "Choria Scout Management API", | ||
:author => "R.I.Pienaar <[email protected]>", | ||
:license => "Apache-2.0", | ||
:version => "0.0.1", | ||
:version => "0.18.0", | ||
:url => "https://choria.io", | ||
:provider => "golang", | ||
:timeout => 5 | ||
|
@@ -79,7 +79,7 @@ action "maintenance", :description => "Pause checking of one or more checks" do | |
end | ||
|
||
action "goss_validate", :description => "Performs a Goss validation using a specific file" do | ||
display :always | ||
display :failed | ||
|
||
input :file, | ||
:prompt => "Goss File", | ||
|
@@ -132,9 +132,9 @@ action "goss_validate", :description => "Performs a Goss validation using a spec | |
:display_as => "Tests" | ||
|
||
summarize do | ||
aggregate summary(:tests) | ||
aggregate summary(:failures) | ||
aggregate summary(:success) | ||
aggregate summary(:tests, :format => "%s Test Cases on %d node(s)") | ||
aggregate summary(:failures, :format => "%s Failed Cases on %d node(s)") | ||
aggregate summary(:success, :format => "%s Passed Cases on %d node(s)") | ||
end | ||
end | ||
|
||
|
Oops, something went wrong.