Skip to content

Commit fdf24e1

Browse files
committed
(maint) Make PE 2023 install by default
1 parent 1758f08 commit fdf24e1

9 files changed

+10
-10
lines changed

Diff for: .github/workflows/test-add-compiler.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
version:
1515
description: PE version to install
1616
required: true
17-
default: 2021.7.9
17+
default: 2023.8.0
1818
ssh-debugging:
1919
description: Boolean; whether or not to pause for ssh debugging
2020
required: true

Diff for: .github/workflows/test-add-replica.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
version:
1515
description: PE version to install
1616
required: true
17-
default: 2021.7.9
17+
default: 2023.8.0
1818
ssh-debugging:
1919
description: Boolean; whether or not to pause for ssh debugging
2020
required: true

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
version:
1515
description: PE version to install
1616
required: true
17-
default: 2021.7.9
17+
default: 2023.8.0
1818
ssh-debugging:
1919
description: Boolean; whether or not to pause for ssh debugging
2020
required: true

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
type: string
2424
required: true
2525
description: The initial version of PE to install before upgrade
26-
default: 2021.7.9
26+
default: 2023.8.0
2727
ssh-debugging:
2828
description: Boolean; whether or not to pause for ssh debugging
2929
required: true

Diff for: .github/workflows/test-upgrade-latest-xlarge-dev-nightly.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
architecture: [extra-large-with-dr]
19-
version: [2021.7.9]
19+
version: [2023.8.0]
2020
image: [almalinux-cloud/almalinux-8]
2121
steps:
2222
- name: Checkout Source

Diff for: REFERENCE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2185,7 +2185,7 @@ Data type: `Peadm::Pe_version`
21852185

21862186

21872187

2188-
Default value: `'2021.7.9'`
2188+
Default value: `'2023.8.0'`
21892189

21902190
##### <a name="-peadm--install--dns_alt_names"></a>`dns_alt_names`
21912191

Diff for: documentation/install.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Example params.json Bolt parameters file (shown: Standard):
120120
"primary_host": "pe-xl-core-0.lab1.puppet.vm",
121121
"console_password": "puppetlabs",
122122
"dns_alt_names": ["puppet", "puppet.lab1.puppet.vm"],
123-
"version": "2021.7.9"
123+
"version": "2023.8.0"
124124
}
125125
```
126126

Diff for: plans/install.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
# Common Configuration
4848
String $console_password,
49-
Peadm::Pe_version $version = '2021.7.9',
49+
Peadm::Pe_version $version = '2023.8.0',
5050
Optional[Stdlib::HTTPSUrl] $pe_installer_source = undef,
5151
Optional[Array[String]] $dns_alt_names = undef,
5252
Optional[String] $compiler_pool_address = undef,

Diff for: spec/plans/subplans/install_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@
8787
expect(run_plan('peadm::subplans::install', params)).to be_ok
8888
end
8989

90-
it 'installs 2021.7.9 with legacy compilers' do
90+
it 'installs 2023.8.0 with legacy compilers' do
9191
params = {
9292
'primary_host' => 'primary',
9393
'console_password' => 'puppetLabs123!',
94-
'version' => '2021.7.9',
94+
'version' => '2023.8.0',
9595
'legacy_compilers' => ['compiler1', 'compiler2'],
9696
}
9797
expect(run_plan('peadm::subplans::install', params)).to be_ok

0 commit comments

Comments
 (0)