Skip to content

Commit 2527bc0

Browse files
authored
Merge pull request #229 from puppetlabs/2021.4
Support PE 2021.4
2 parents 131def2 + 66d3c80 commit 2527bc0

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.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.8
32-
- 2021.3.0
31+
- 2019.8.9
32+
- 2021.4.0
3333
image:
3434
- centos-7
3535

.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.3.0'
18+
default: '2021.4.0'
1919
ssh-debugging:
2020
description: 'Boolean; whether or not to pause for ssh debugging'
2121
required: true

.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.8'
30+
- '2019.8.9'
3131
version_to_upgrade:
32-
- '2021.3.0'
32+
- '2021.4.0'
3333
image:
3434
- 'centos-7'
3535
download_mode:

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ 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.3)
46-
* Bolt 3.17.0 or newer (tested with Bolt 3.17.0)
45+
* Puppet Enterprise 2019.8.1 or newer (tested with PE 2021.4)
46+
* 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.
4949

documentation/install.md

+2-2
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.3.0"
106+
"version": "2021.4.0"
107107
}
108108
```
109109

@@ -115,7 +115,7 @@ The peadm::install plan downloads installation content from an online repository
115115

116116
The default staging directory is `/tmp`. If a different staging dir is being used, it can be specified using the `stagingdir` parameter to the peadm::install plan.
117117

118-
The content needed is the PE installation tarball for the target version. The installation content should be in the staging dir, and should have its original name. E.g. `/tmp/puppet-enterprise-2021.3.0-el-7-x86_64.tar.gz`.
118+
The content needed is the PE installation tarball for the target version. The installation content should be in the staging dir, and should have its original name. E.g. `/tmp/puppet-enterprise-2021.4.0-el-7-x86_64.tar.gz`.
119119

120120
Installation content can be downloaded from [https://puppet.com/try-puppet/puppet-enterprise/download/](https://puppet.com/try-puppet/puppet-enterprise/download/).
121121

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.3'
9+
$newest = '2021.4'
1010
$supported = ($version =~ SemVerRange(">= ${oldest} <= ${newest}"))
1111

1212
if $permit_unsafe_versions {

0 commit comments

Comments
 (0)