Skip to content

Commit bddd9a5

Browse files
authored
Merge pull request #403 from Jo-Lillie/pe-36366-update-peadm-with-2023.5-support
(PE-36366) Update PEADM with 2023.5 support
2 parents c673e58 + 54a8698 commit bddd9a5

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
version:
4545
- 2019.8.12
4646
- 2021.7.5
47-
- 2023.4.0
47+
- 2023.5.0
4848
image:
4949
- rhel-8
5050
fips:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
version:
4545
- 2019.8.12
4646
- 2021.7.5
47-
- 2023.4.0
47+
- 2023.5.0
4848
image:
4949
- centos-7
5050
- almalinux-cloud/almalinux-8

documentation/upgrade.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ The `peadm::upgrade` plan requires as input the version of PE to upgrade to, and
88

99
Please note that when upgrading from before 2023.4 to 2023.4 or above and you are using code manager, it is nessesary to provide known hosts for r10k. r10k_known_hosts is an optional parameter and is only required one time when upgrading to 2023.4 or beyond. But if you currently use the SSH protocol to allow r10k to access your remote Git repository, your Code manager or r10k code management tool cannot function until you define the r10k_known_hosts parameter. Subsequent upgrades will already have this and it won't be required again. Please refer to the Puppet Enterprise 2023.4 Upgrade cautions for more details.
1010

11-
The following is an example parameters file for upgrading an Extra Large architecture deployment of PE 2023.2.0 to PE 2023.4.0.
11+
The following is an example parameters file for upgrading an Extra Large architecture deployment of PE 2023.2.0 to PE 2023.5.0.
1212

1313
```json
1414
{
15-
"version": "2023.4.0",
15+
"version": "2023.5.0",
1616
"primary_host": "pe-master-09a40c-0.us-west1-a.c.reidmv-peadm.internal",
1717
"primary_postgresql_host": "pe-psql-09a40c-0.us-west1-a.c.reidmv-peadm.internal",
1818
"replica_host": "pe-master-09a40c-1.us-west1-b.c.reidmv-peadm.internal",

functions/assert_supported_pe_version.pp

Lines changed: 1 addition & 1 deletion
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 = '2023.4'
9+
$newest = '2023.5'
1010
$supported = ($version =~ SemVerRange(">= ${oldest} <= ${newest}"))
1111

1212
if $permit_unsafe_versions {

0 commit comments

Comments
 (0)