Skip to content

Commit 10928f7

Browse files
(RE-16847) add support for PE 2025.2.0 (#570)
1 parent 7614192 commit 10928f7

12 files changed

+16
-20
lines changed

.github/workflows/test-add-compiler-matrix.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
architecture: [standard, large, extra-large]
39-
version: [2021.7.9, 2023.8.2, 2025.1.0]
39+
version: [2021.7.9, 2023.8.2, 2025.2.0]
4040
image: [almalinux-cloud/almalinux-8]
4141
steps:
4242
- name: Checkout Source

.github/workflows/test-add-replica-matrix.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
architecture: [standard, standard-with-dr, large, extra-large]
39-
version: [2023.8.2, 2025.1.0]
39+
version: [2023.8.2, 2025.2.0]
4040
image: [almalinux-cloud/almalinux-8]
4141
steps:
4242
- name: Checkout Source

.github/workflows/test-backup-restore.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ on:
2424
version:
2525
description: PE version to install
2626
required: true
27-
default: 2025.1.0
27+
default: 2025.2.0
2828
ssh-debugging:
2929
description: Boolean; whether or not to pause for ssh debugging
3030
required: true
3131
default: 'false'
3232
jobs:
3333
backup-restore-test:
34-
name: "Backup, break and restore cluster: PE ${{ github.event.inputs.version || '2025.1.0' }}\
34+
name: "Backup, break and restore cluster: PE ${{ github.event.inputs.version || '2025.2.0' }}\
3535
\ ${{ github.event.inputs.architecture || 'extra-large' }} on ${{ github.event.inputs.image || 'almalinux-cloud/almalinux-8' }}"
3636
runs-on: ubuntu-latest
3737
env:

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
fail-fast: false
3838
matrix:
3939
architecture: [standard-with-dr, large, extra-large-with-dr]
40-
version: [2019.8.12, 2021.7.9, 2023.8.2, 2025.1.0]
40+
version: [2019.8.12, 2021.7.9, 2023.8.2, 2025.2.0]
4141
image: [rhel-8]
4242
fips: [enable]
4343
steps:

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
architecture: [standard-with-dr, large, extra-large-with-dr]
39-
version: [2019.8.12, 2021.7.9, 2023.8.2, 2025.1.0]
39+
version: [2019.8.12, 2021.7.9, 2023.8.2, 2025.2.0]
4040
image: [almalinux-cloud/almalinux-8]
4141
steps:
4242
- name: Checkout Source

.github/workflows/test-install-rhel-9.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
architecture: [standard-with-dr, large, extra-large-with-dr]
39-
version: [2021.7.9, 2023.8.2, 2025.1.0]
39+
version: [2021.7.9, 2023.8.2, 2025.2.0]
4040
image: [rhel-9]
4141
steps:
4242
- name: Checkout Source

.github/workflows/test-legacy-compilers.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
--modulepath spec/fixtures/modules \
100100
architecture=large-with-dr \
101101
console_password=${{ secrets.CONSOLE_PASSWORD }} \
102-
version=2025.1.0
102+
version=2025.2.0
103103
- name: Wait as long as the file ${HOME}/pause file is present
104104
if: ${{ always() && github.event.inputs.ssh-debugging == 'true' }}
105105
run: |

.github/workflows/test-legacy-upgrade.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
compiler=$(yq '.groups[].targets[] | select(.vars.role == "compiler") | .name' spec/fixtures/litmus_inventory.yaml | head -n 1)
153153
legacy_compiler=$(yq '.groups[].targets[] | select(.vars.role == "compiler") | .name' spec/fixtures/litmus_inventory.yaml | sed -n 2p)
154154
replica=$(yq '.groups[].targets[] | select(.vars.role == "replica") | .name' spec/fixtures/litmus_inventory.yaml)
155-
echo -n '{ "primary_host": "'$primary'", "replica_host": "'$replica'", "compiler_hosts": ["'$compiler'", "'$legacy_compiler'"], "version": "2025.1.0"}' > upgrade_params.json
155+
echo -n '{ "primary_host": "'$primary'", "replica_host": "'$replica'", "compiler_hosts": ["'$compiler'", "'$legacy_compiler'"], "version": "2025.2.0"}' > upgrade_params.json
156156
- name: Upgrade PE with legacy compilers
157157
run: |
158158
echo ::group::upgrade_params.json

.github/workflows/test-migration.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ jobs:
4343
# - extra-large
4444
# - large-with-dr
4545
# - extra-large-with-dr
46-
version: [2021.7.9, 2023.8.2, 2025.1.0]
46+
version: [2021.7.9, 2023.8.2, 2025.2.0]
4747
image: [almalinux-cloud/almalinux-8]
4848
include:
4949
- architecture: standard
5050
version: 2023.8.0
5151
image: almalinux-cloud/almalinux-8
52-
new_pe_version: 2025.0.0
52+
new_pe_version: 2025.2.0
5353
steps:
5454
- name: Checkout Source
5555
uses: actions/checkout@v4

.github/workflows/test-replace-failed-postgresql.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
matrix:
3838
architecture: [extra-large-with-dr-and-spare-replica]
3939
install_architecture: [extra-large-with-dr]
40-
version: [2021.7.9, 2023.8.2, 2025.1.0]
40+
version: [2021.7.9, 2023.8.2, 2025.2.0]
4141
image: [almalinux-cloud/almalinux-8]
4242
steps:
4343
- name: Checkout Source

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

+3-7
Original file line numberDiff line numberDiff line change
@@ -38,26 +38,22 @@ jobs:
3838
matrix:
3939
architecture: [standard, extra-large-with-dr]
4040
version: [2019.8.12, 2021.7.9, 2023.8.2]
41-
version_to_upgrade: [2021.7.9, 2023.8.2, 2025.1.0]
41+
version_to_upgrade: [2021.7.9, 2023.8.2, 2025.2.0]
4242
image: [almalinux-cloud/almalinux-8]
4343
download_mode: [direct]
4444
exclude:
4545
- version: 2019.8.12
4646
version_to_upgrade: 2023.8.2
4747
- version: 2019.8.12
48-
version_to_upgrade: 2025.1.0
48+
version_to_upgrade: 2025.2.0
4949
- version: 2021.7.9
5050
version_to_upgrade: 2021.7.9
5151
- version: 2021.7.9
52-
version_to_upgrade: 2025.1.0
52+
version_to_upgrade: 2025.2.0
5353
- version: 2023.8.1
5454
version_to_upgrade: 2023.8.2
55-
- version: 2023.8.2
56-
version_to_upgrade: 2025.1.0
5755
- version: 2023.8.2
5856
version_to_upgrade: 2021.7.9
59-
- version: 2025.0.0
60-
version_to_upgrade: 2025.1.0
6157
steps:
6258
- name: Start SSH session
6359
if: ${{ github.event.inputs.ssh-debugging == 'true' }}

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

1212
if $permit_unsafe_versions {

0 commit comments

Comments
 (0)