Skip to content

Commit 51d4350

Browse files
author
GitHub Action
committed
Release prep v3.6.0
1 parent 897c87a commit 51d4350

File tree

3 files changed

+51
-52
lines changed

3 files changed

+51
-52
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
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+
## [v3.6.0](https://github.com/puppetlabs/puppetlabs-peadm/tree/v3.6.0) (2022-05-04)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-peadm/compare/v3.5.0...v3.6.0)
8+
9+
### Added
10+
11+
- Solarch 581 [\#235](https://github.com/puppetlabs/puppetlabs-peadm/pull/235) ([davidsandilands](https://github.com/davidsandilands))
12+
13+
### Fixed
14+
15+
- Add read map so puppetdb can start on new compiler [\#252](https://github.com/puppetlabs/puppetlabs-peadm/pull/252) ([ody](https://github.com/ody))
16+
- \(SOLARCH-434\) Procedure for recovering PSQL [\#243](https://github.com/puppetlabs/puppetlabs-peadm/pull/243) ([ody](https://github.com/ody))
17+
518
## [v3.5.0](https://github.com/puppetlabs/puppetlabs-peadm/tree/v3.5.0) (2022-04-13)
619

720
[Full Changelog](https://github.com/puppetlabs/puppetlabs-peadm/compare/v3.4.0...v3.5.0)

REFERENCE.md

+37-51
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,14 @@
3535
* [`peadm::node_manager_yaml_location`](#peadmnode_manager_yaml_location)
3636
* [`peadm::oid`](#peadmoid)
3737
* [`peadm::plan_step`](#peadmplan_step)
38+
* [`peadm::recovery_opts_default`](#peadmrecovery_opts_default)
3839
* [`peadm::wait_until_service_ready`](#peadmwait_until_service_ready): A convenience function to help remember port numbers for services and handle running the wait_until_service_ready task
3940

4041
### Data types
4142

4243
* [`Peadm::Pe_version`](#peadmpe_version)
4344
* [`Peadm::Pem`](#peadmpem)
45+
* [`Peadm::Recovery_opts`](#peadmrecovery_opts)
4446
* [`Peadm::SingleTargetSpec`](#peadmsingletargetspec): A SingleTargetSpec represents any String, Target or single-element array of one or the other that can be passed to get_targets() to return an
4547

4648
### Tasks
@@ -725,6 +727,18 @@ Data type: `Callable`
725727

726728

727729

730+
### <a name="peadmrecovery_opts_default"></a>`peadm::recovery_opts_default`
731+
732+
Type: Puppet Language
733+
734+
The peadm::recovery_opts_default function.
735+
736+
#### `peadm::recovery_opts_default()`
737+
738+
The peadm::recovery_opts_default function.
739+
740+
Returns: `Any`
741+
728742
### <a name="peadmwait_until_service_ready"></a>`peadm::wait_until_service_ready`
729743

730744
Type: Puppet Language
@@ -773,6 +787,23 @@ Alias of
773787
Pattern[/^-----BEGIN/]
774788
```
775789

790+
### <a name="peadmrecovery_opts"></a>`Peadm::Recovery_opts`
791+
792+
The Peadm::Recovery_opts data type.
793+
794+
Alias of
795+
796+
```puppet
797+
Struct[{
798+
'orchestrator' => Optional[Boolean],
799+
'puppetdb' => Optional[Boolean],
800+
'rbac' => Optional[Boolean],
801+
'activity' => Optional[Boolean],
802+
'ca' => Optional[Boolean[false]],
803+
'classifier' => Optional[Boolean],
804+
}]
805+
```
806+
776807
### <a name="peadmsingletargetspec"></a>`Peadm::SingleTargetSpec`
777808

778809
A SingleTargetSpec represents any String, Target or single-element array of
@@ -1290,68 +1321,23 @@ This plan can backup data as outlined at insert doc
12901321

12911322
The following parameters are available in the `peadm::backup` plan:
12921323

1293-
* [`primary_host`](#primary_host)
1294-
* [`backup_orchestrator`](#backup_orchestrator)
1295-
* [`backup_rbac`](#backup_rbac)
1296-
* [`backup_activity`](#backup_activity)
1297-
* [`backup_ca_ssl`](#backup_ca_ssl)
1298-
* [`backup_puppetdb`](#backup_puppetdb)
1299-
* [`backup_classification`](#backup_classification)
1324+
* [`targets`](#targets)
1325+
* [`backup`](#backup)
13001326
* [`output_directory`](#output_directory)
13011327

1302-
##### <a name="primary_host"></a>`primary_host`
1328+
##### <a name="targets"></a>`targets`
13031329

13041330
Data type: `Peadm::SingleTargetSpec`
13051331

13061332

13071333

1308-
##### <a name="backup_orchestrator"></a>`backup_orchestrator`
1309-
1310-
Data type: `Boolean`
1311-
1312-
1313-
1314-
Default value: ``true``
1315-
1316-
##### <a name="backup_rbac"></a>`backup_rbac`
1317-
1318-
Data type: `Boolean`
1319-
1320-
1321-
1322-
Default value: ``true``
1323-
1324-
##### <a name="backup_activity"></a>`backup_activity`
1325-
1326-
Data type: `Boolean`
1327-
1328-
1329-
1330-
Default value: ``true``
1331-
1332-
##### <a name="backup_ca_ssl"></a>`backup_ca_ssl`
1333-
1334-
Data type: `Boolean`
1335-
1336-
1337-
1338-
Default value: ``true``
1339-
1340-
##### <a name="backup_puppetdb"></a>`backup_puppetdb`
1341-
1342-
Data type: `Boolean`
1343-
1344-
1334+
##### <a name="backup"></a>`backup`
13451335

1346-
Default value: ``false``
1336+
Data type: `Peadm::Recovery_opts`
13471337

1348-
##### <a name="backup_classification"></a>`backup_classification`
13491338

1350-
Data type: `Boolean`
13511339

1352-
1353-
1354-
Default value: ``true``
1340+
Default value: `{}`
13551341

13561342
##### <a name="output_directory"></a>`output_directory`
13571343

metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-peadm",
3-
"version": "3.5.0",
3+
"version": "3.6.0",
44
"author": "puppetlabs",
55
"summary": "Bolt plans used to deploy an at-scale Puppet Enterprise architecture",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)