Showing with 571 additions and 113 deletions.
  1. +3 −0 .puppet-lint.rc
  2. +5 −1 .sync.yml
  3. +13 −0 CHANGELOG.md
  4. +101 −4 README.md
  5. +71 −0 REFERENCE.md
  6. +3 −0 Rakefile
  7. +0 −46 data/common.yaml
  8. +46 −0 data/static.yaml
  9. +5 −1 hiera.yaml
  10. +3 −2 lib/facter/agent_status_check.rb
  11. +64 −48 lib/facter/pe_status_check.rb
  12. +3 −3 metadata.json
  13. +106 −0 plans/agent_summary.pp
  14. +106 −0 plans/infra_summary.pp
  15. +25 −5 spec/acceptance/pe_status_check_spec.rb
  16. +17 −3 spec/spec_helper_acceptance_local.rb
3 changes: 3 additions & 0 deletions .puppet-lint.rc
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
--relative
--no-unquoted_string_in_case-check
--no-strict_indent-check
--no-manifest_whitespace_opening_brace_befor-check
6 changes: 5 additions & 1 deletion .sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,14 @@ spec/spec_helper.rb:
coverage_report: true
Rakefile:
changelog_user: "puppetlabs"
extra_disabled_lint_checks:
- unquoted_string_in_case
- strict_indent
- manifest_whitespace_opening_brace_befor
spec/default_facts.yml:
extra_facts:
pe_build: '2021.4.0'

Gemfile:
optional:
":development":
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

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).

## [v1.4.0](https://github.com/puppetlabs/puppetlabs-pe_status_check/tree/v1.4.0) (2022-04-29)

[Full Changelog](https://github.com/puppetlabs/puppetlabs-pe_status_check/compare/v1.3.0...v1.4.0)

### Added

- \(SUP-3230\) Check for the expiry date of the host cert on infrastructure [\#123](https://github.com/puppetlabs/puppetlabs-pe_status_check/pull/123) ([MartyEwings](https://github.com/MartyEwings))
- \(SUP-3229\) Summary Plan for agents [\#122](https://github.com/puppetlabs/puppetlabs-pe_status_check/pull/122) ([MartyEwings](https://github.com/MartyEwings))
- \(SUP-3005\) Update plan output format [\#117](https://github.com/puppetlabs/puppetlabs-pe_status_check/pull/117) ([jarretlavallee](https://github.com/jarretlavallee))
- Add Suse support to AS002 [\#115](https://github.com/puppetlabs/puppetlabs-pe_status_check/pull/115) ([seanmil](https://github.com/seanmil))
- \(SUP-3005\) Add Plan for Reporting on Infrastructure [\#114](https://github.com/puppetlabs/puppetlabs-pe_status_check/pull/114) ([MartyEwings](https://github.com/MartyEwings))
- \(SUP-2914\) Verify that 'puppet module list' output is without Warnings [\#43](https://github.com/puppetlabs/puppetlabs-pe_status_check/pull/43) ([gavindidrichsen](https://github.com/gavindidrichsen))

## [v1.3.0](https://github.com/puppetlabs/puppetlabs-pe_status_check/tree/v1.3.0) (2022-04-07)

[Full Changelog](https://github.com/puppetlabs/puppetlabs-pe_status_check/compare/v1.2.0...v1.3.0)
Expand Down
Loading