Skip to content

Commit 7b21708

Browse files
authored
Merge pull request #237 from puppetlabs/PE-2021.5.0
Add support for PE 2021.5
2 parents e21d954 + 9a3b22b commit 7b21708

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Diff for: .github/workflows/test-install-matrix.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
- large
2929
- extra-large-with-dr
3030
version:
31-
- 2019.8.9
32-
- 2021.4.0
31+
- 2019.8.10
32+
- 2021.5.0
3333
image:
3434
- centos-7
3535

Diff for: .github/workflows/test-install.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
version:
1616
description: 'PE version to install'
1717
required: true
18-
default: '2021.4.0'
18+
default: '2021.5.0'
1919
ssh-debugging:
2020
description: 'Boolean; whether or not to pause for ssh debugging'
2121
required: true

Diff for: .github/workflows/test-upgrade.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
- 'standard'
2828
- 'extra-large-with-dr'
2929
version:
30-
- '2019.8.9'
30+
- '2019.8.10'
3131
version_to_upgrade:
32-
- '2021.4.0'
32+
- '2021.5.0'
3333
image:
3434
- 'centos-7'
3535
download_mode:

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The normal usage pattern for peadm is as follows.
4242

4343
### Requirements
4444

45-
* Puppet Enterprise 2019.8.1 or newer (tested with PE 2021.4)
45+
* Puppet Enterprise 2019.8.1 or newer (tested with PE 2021.5)
4646
* Bolt 3.17.0 or newer (tested with Bolt 3.21.0)
4747
* EL 7, EL 8, Ubuntu 18.04, or Ubuntu 20.04
4848
* Classifier Data enabled. This PE feature is enabled by default on new installs, but can be disabled by users if they remove the relevant configuration from their global hiera.yaml file. See the [PE docs](https://puppet.com/docs/pe/latest/config_console.html#task-5039) for more information.

Diff for: documentation/install.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Example params.json Bolt parameters file (shown: Extra Large with DR):
103103
"console_password": "puppetlabs",
104104
"dns_alt_names": [ "puppet", "puppet.lab1.puppet.vm" ],
105105
"compiler_pool_address": "puppet.lab1.puppet.vm",
106-
"version": "2021.4.0"
106+
"version": "2021.5.0"
107107
}
108108
```
109109

Diff for: functions/assert_supported_pe_version.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function peadm::assert_supported_pe_version (
66
Boolean $permit_unsafe_versions = false,
77
) >> Struct[{'supported' => Boolean}] {
88
$oldest = '2019.7'
9-
$newest = '2021.4'
9+
$newest = '2021.5'
1010
$supported = ($version =~ SemVerRange(">= ${oldest} <= ${newest}"))
1111

1212
if $permit_unsafe_versions {

0 commit comments

Comments
 (0)