Skip to content

Commit

Permalink
(maint) Make PE 2023 install by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jhbuchanan45 committed Dec 11, 2024
1 parent 1758f08 commit fdf24e1
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-add-compiler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
version:
description: PE version to install
required: true
default: 2021.7.9
default: 2023.8.0
ssh-debugging:
description: Boolean; whether or not to pause for ssh debugging
required: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-add-replica.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
version:
description: PE version to install
required: true
default: 2021.7.9
default: 2023.8.0
ssh-debugging:
description: Boolean; whether or not to pause for ssh debugging
required: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
version:
description: PE version to install
required: true
default: 2021.7.9
default: 2023.8.0
ssh-debugging:
description: Boolean; whether or not to pause for ssh debugging
required: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-upgrade-latest-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
type: string
required: true
description: The initial version of PE to install before upgrade
default: 2021.7.9
default: 2023.8.0
ssh-debugging:
description: Boolean; whether or not to pause for ssh debugging
required: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
architecture: [extra-large-with-dr]
version: [2021.7.9]
version: [2023.8.0]
image: [almalinux-cloud/almalinux-8]
steps:
- name: Checkout Source
Expand Down
2 changes: 1 addition & 1 deletion REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2185,7 +2185,7 @@ Data type: `Peadm::Pe_version`



Default value: `'2021.7.9'`
Default value: `'2023.8.0'`

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

Expand Down
2 changes: 1 addition & 1 deletion documentation/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Example params.json Bolt parameters file (shown: Standard):
"primary_host": "pe-xl-core-0.lab1.puppet.vm",
"console_password": "puppetlabs",
"dns_alt_names": ["puppet", "puppet.lab1.puppet.vm"],
"version": "2021.7.9"
"version": "2023.8.0"
}
```

Expand Down
2 changes: 1 addition & 1 deletion plans/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

# Common Configuration
String $console_password,
Peadm::Pe_version $version = '2021.7.9',
Peadm::Pe_version $version = '2023.8.0',
Optional[Stdlib::HTTPSUrl] $pe_installer_source = undef,
Optional[Array[String]] $dns_alt_names = undef,
Optional[String] $compiler_pool_address = undef,
Expand Down
4 changes: 2 additions & 2 deletions spec/plans/subplans/install_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@
expect(run_plan('peadm::subplans::install', params)).to be_ok
end

it 'installs 2021.7.9 with legacy compilers' do
it 'installs 2023.8.0 with legacy compilers' do
params = {
'primary_host' => 'primary',
'console_password' => 'puppetLabs123!',
'version' => '2021.7.9',
'version' => '2023.8.0',
'legacy_compilers' => ['compiler1', 'compiler2'],
}
expect(run_plan('peadm::subplans::install', params)).to be_ok
Expand Down

0 comments on commit fdf24e1

Please sign in to comment.