Skip to content
This repository has been archived by the owner on Jan 4, 2021. It is now read-only.

Commit

Permalink
Merge pull request #630 from ripienaar/0180
Browse files Browse the repository at this point in the history
(misc) Release 0.18.0
  • Loading branch information
ripienaar authored Jul 18, 2020
2 parents f8f2acf + 29a74d6 commit 7e1e43b
Show file tree
Hide file tree
Showing 18 changed files with 149 additions and 250 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
|Date |Issue |Description |
|----------|------|---------------------------------------------------------------------------------------------------------|
|2020/07/18| |Release 0.18.0 |
|2020/07/17|628 |Copy `scout` ddl files |
|2020/07/17|626 |Support the `scout` agent in the `choria` discovery method |
|2020/07/07| |Release 0.17.3 |
|2020/06/12|623 |Print CSR fingerprint in request_cert application |
|2020/04/19| |Release 0.17.2 |
Expand Down
74 changes: 0 additions & 74 deletions CODE_OF_CONDUCT.md

This file was deleted.

45 changes: 0 additions & 45 deletions CONTRIBUTING.md

This file was deleted.

2 changes: 1 addition & 1 deletion lib/mcollective/agent/bolt_tasks.ddl
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion lib/mcollective/agent/bolt_tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
Expand Down
2 changes: 1 addition & 1 deletion lib/mcollective/agent/choria_util.ddl
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion lib/mcollective/agent/choria_util.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
Expand Down
2 changes: 1 addition & 1 deletion lib/mcollective/agent/rpcutil.ddl
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions lib/mcollective/agent/rpcutil.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
Expand Down Expand Up @@ -217,7 +217,7 @@
"default": null,
"optional": false,
"validation": "^[\\w\\-\\.]+$",
"maxlength": 40
"maxlength": 256
}
},
"output": {
Expand Down
10 changes: 5 additions & 5 deletions lib/mcollective/agent/scout.ddl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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

Expand Down
Loading

0 comments on commit 7e1e43b

Please sign in to comment.