Skip to content

Commit 70899f3

Browse files
authored
Merge pull request #182 from puppetlabs/release-prep
Release prep v2.6.0
2 parents acd3f5a + 96bc8ec commit 70899f3

File tree

3 files changed

+31
-22
lines changed

3 files changed

+31
-22
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [v2.6.0](https://github.com/puppetlabs/puppetlabs-pe_status_check/tree/v2.6.0) (2023-01-23)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-pe_status_check/compare/v2.5.1...v2.6.0)
8+
9+
### Added
10+
11+
- \(SUP-3703\) Add indicator S0044 node\_terminus is the PE classifier [\#181](https://github.com/puppetlabs/puppetlabs-pe_status_check/pull/181) ([taikaa](https://github.com/taikaa))
12+
- \(SUP-3696\) Added S0043 to determine whether there are nodes with Puppet agent versions ahead of the primary server [\#180](https://github.com/puppetlabs/puppetlabs-pe_status_check/pull/180) ([taikaa](https://github.com/taikaa))
13+
514
## [v2.5.1](https://github.com/puppetlabs/puppetlabs-pe_status_check/tree/v2.5.1) (2022-11-10)
615

716
[Full Changelog](https://github.com/puppetlabs/puppetlabs-pe_status_check/compare/v2.5.0...v2.5.1)

REFERENCE.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
### Classes
88

99
* [`pe_status_check`](#pe_status_check): This class should be enabled if you wish Puppet to notify when pe_status_check indicators are not at optimal values
10-
* [`pe_status_check::agent_status_enable`](#pe_status_checkagent_status_enable): Enables the execution of agent_status_check fact
10+
* [`pe_status_check::agent_status_enable`](#pe_status_check--agent_status_enable): Enables the execution of agent_status_check fact
1111

1212
### Plans
1313

14-
* [`pe_status_check::agent_summary`](#pe_status_checkagent_summary): Summary report if the state of agent_status_check on each node
14+
* [`pe_status_check::agent_summary`](#pe_status_check--agent_summary): Summary report if the state of agent_status_check on each node
1515
Uses the facts task to get the current status from each node
1616
and produces a summary report in JSON
17-
* [`pe_status_check::infra_summary`](#pe_status_checkinfra_summary): Summary report if the state of pe_status check on each node
17+
* [`pe_status_check::infra_summary`](#pe_status_check--infra_summary): Summary report if the state of pe_status check on each node
1818
Uses the facts task to get the current status from each node
1919
and produces a summary report in JSON
2020

@@ -37,17 +37,17 @@ include pe_status_check
3737

3838
The following parameters are available in the `pe_status_check` class:
3939

40-
* [`indicator_exclusions`](#indicator_exclusions)
40+
* [`indicator_exclusions`](#-pe_status_check--indicator_exclusions)
4141

42-
##### <a name="indicator_exclusions"></a>`indicator_exclusions`
42+
##### <a name="-pe_status_check--indicator_exclusions"></a>`indicator_exclusions`
4343

4444
Data type: `Array[String[1]]`
4545

4646
List of disabled indicators, place any indicator ids you do not wish to report on in this list
4747

4848
Default value: `[]`
4949

50-
### <a name="pe_status_checkagent_status_enable"></a>`pe_status_check::agent_status_enable`
50+
### <a name="pe_status_check--agent_status_enable"></a>`pe_status_check::agent_status_enable`
5151

5252
Adding this class will enable the execution of the agent_status_check fact,
5353
This allows the fact to be targeted to a specific agent or group of agents
@@ -64,19 +64,19 @@ include pe_status_check::agent_status_enable
6464

6565
The following parameters are available in the `pe_status_check::agent_status_enable` class:
6666

67-
* [`agent_status_enabled`](#agent_status_enabled)
67+
* [`agent_status_enabled`](#-pe_status_check--agent_status_enable--agent_status_enabled)
6868

69-
##### <a name="agent_status_enabled"></a>`agent_status_enabled`
69+
##### <a name="-pe_status_check--agent_status_enable--agent_status_enabled"></a>`agent_status_enabled`
7070

7171
Data type: `Boolean`
7272

7373
Flag to enable or disable agent_status_check fact
7474

75-
Default value: ``true``
75+
Default value: `true`
7676

7777
## Plans
7878

79-
### <a name="pe_status_checkagent_summary"></a>`pe_status_check::agent_summary`
79+
### <a name="pe_status_check--agent_summary"></a>`pe_status_check::agent_summary`
8080

8181
Summary report if the state of agent_status_check on each node
8282
Uses the facts task to get the current status from each node
@@ -86,27 +86,27 @@ and produces a summary report in JSON
8686

8787
The following parameters are available in the `pe_status_check::agent_summary` plan:
8888

89-
* [`targets`](#targets)
90-
* [`indicator_exclusions`](#indicator_exclusions)
89+
* [`targets`](#-pe_status_check--agent_summary--targets)
90+
* [`indicator_exclusions`](#-pe_status_check--agent_summary--indicator_exclusions)
9191

92-
##### <a name="targets"></a>`targets`
92+
##### <a name="-pe_status_check--agent_summary--targets"></a>`targets`
9393

9494
Data type: `Optional[TargetSpec]`
9595

9696
A comma seprated list of FQDN's of Puppet agent nodes
9797
Defaults to using a PuppetDB query to identify nodes
9898

99-
Default value: ``undef``
99+
Default value: `undef`
100100

101-
##### <a name="indicator_exclusions"></a>`indicator_exclusions`
101+
##### <a name="-pe_status_check--agent_summary--indicator_exclusions"></a>`indicator_exclusions`
102102

103103
Data type: `Array[String[1]]`
104104

105105
List of disabled indicators, place any indicator ids you do not wish to report on in this list
106106

107107
Default value: `[]`
108108

109-
### <a name="pe_status_checkinfra_summary"></a>`pe_status_check::infra_summary`
109+
### <a name="pe_status_check--infra_summary"></a>`pe_status_check::infra_summary`
110110

111111
Summary report if the state of pe_status check on each node
112112
Uses the facts task to get the current status from each node
@@ -116,19 +116,19 @@ and produces a summary report in JSON
116116

117117
The following parameters are available in the `pe_status_check::infra_summary` plan:
118118

119-
* [`targets`](#targets)
120-
* [`indicator_exclusions`](#indicator_exclusions)
119+
* [`targets`](#-pe_status_check--infra_summary--targets)
120+
* [`indicator_exclusions`](#-pe_status_check--infra_summary--indicator_exclusions)
121121

122-
##### <a name="targets"></a>`targets`
122+
##### <a name="-pe_status_check--infra_summary--targets"></a>`targets`
123123

124124
Data type: `Optional[TargetSpec]`
125125

126126
A comma seprated list of FQDN's of Puppet infrastructure agent nodes
127127
Defaults to using a PuppetDB query to identify nodes
128128

129-
Default value: ``undef``
129+
Default value: `undef`
130130

131-
##### <a name="indicator_exclusions"></a>`indicator_exclusions`
131+
##### <a name="-pe_status_check--infra_summary--indicator_exclusions"></a>`indicator_exclusions`
132132

133133
Data type: `Array[String[1]]`
134134

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-pe_status_check",
3-
"version": "2.5.1",
3+
"version": "2.6.0",
44
"author": "Marty Ewings",
55
"summary": "A Puppet Enterprise Module to Promote Preventative Maintenance and Self Service",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)