Skip to content

Commit 39df962

Browse files
committed
Bump latest versoins to 2021.7.0 and 2019.8.12
1 parent 472d2b2 commit 39df962

File tree

6 files changed

+20
-18
lines changed

6 files changed

+20
-18
lines changed

.github/workflows/test-fips-install-matrix.yaml

Lines changed: 2 additions & 2 deletions
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.11
32-
- 2021.6.0
31+
- 2019.8.12
32+
- 2021.7.0
3333
image:
3434
- rhel-8
3535
fips:

.github/workflows/test-install-matrix.yaml

Lines changed: 2 additions & 2 deletions
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.11
32-
- 2021.6.0
31+
- 2019.8.12
32+
- 2021.7.0
3333
image:
3434
- centos-7
3535

.github/workflows/test-upgrade.yaml

Lines changed: 2 additions & 2 deletions
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.11'
30+
- '2019.8.12'
3131
version_to_upgrade:
32-
- '2021.6.0'
32+
- '2021.7.0'
3333
image:
3434
- 'centos-7'
3535
download_mode:

README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@ The peadm module is able to deploy and manage Puppet Enterprise 2019.x Standard,
66

77
#### Table of Contents
88

9-
1. [Expectations and support](#expectations-and-support)
10-
2. [Overview](#overview)
11-
* [What peadm affects](#what-peadm-affects)
12-
* [What peadm does not affect](#what-peadm-does-not-affect)
13-
* [Requirements](#requirements)
14-
3. [Usage](#usage)
15-
4. [Reference](#reference)
16-
5. [Getting Help](#getting-help)
9+
- [Puppet Enterprise (pe) Administration (adm) Module](#puppet-enterprise-pe-administration-adm-module)
10+
- [Table of Contents](#table-of-contents)
11+
- [Expectations and support](#expectations-and-support)
12+
- [Overview](#overview)
13+
- [What peadm affects](#what-peadm-affects)
14+
- [What peadm does not affect](#what-peadm-does-not-affect)
15+
- [Requirements](#requirements)
16+
- [Usage](#usage)
17+
- [Reference](#reference)
18+
- [Getting Help](#getting-help)
1719

1820
## Expectations and support
1921

@@ -42,7 +44,7 @@ The normal usage pattern for peadm is as follows.
4244

4345
### Requirements
4446

45-
* Puppet Enterprise 2019.8.1 or newer (tested with PE 2021.6)
47+
* Puppet Enterprise 2019.8.1 or newer (tested with PE 2021.7)
4648
* Bolt 3.17.0 or newer (tested with Bolt 3.21.0)
4749
* EL 7, EL 8, Ubuntu 18.04, or Ubuntu 20.04
4850
* 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.

documentation/install.md

Lines changed: 1 addition & 1 deletion
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.6.0"
106+
"version": "2021.7.0"
107107
}
108108
```
109109

functions/assert_supported_pe_version.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
function peadm::assert_supported_pe_version (
55
String $version,
66
Boolean $permit_unsafe_versions = false,
7-
) >> Struct[{'supported' => Boolean}] {
7+
) >> Struct[{ 'supported' => Boolean }] {
88
$oldest = '2019.7'
9-
$newest = '2021.6'
9+
$newest = '2021.7'
1010
$supported = ($version =~ SemVerRange(">= ${oldest} <= ${newest}"))
1111

1212
if $permit_unsafe_versions {

0 commit comments

Comments
 (0)