beaker-pe 2.12.0 → 2.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/Gemfile.lock +2 -2
- data/acceptance/tests/install_smoke_test.rb +0 -5
- data/lib/beaker-pe/install/pe_utils.rb +2 -2
- data/lib/beaker-pe/version.rb +1 -1
- data/spec/acceptance/nodesets/default.yml +10 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 934e7c2641906bd3aaca40781a7c552d12be45e896f160c26e4bc964756ae6b0
|
|
4
|
+
data.tar.gz: 2e9b89d83d9ca76714f46eb76b72c33828161db472bece39d27838241eef3ce0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73ffbaebf8976434a9cfef52bd2a3c5b3eb41f71b06408cabf5dce2672676bb1e60ba7f4b3d5d02bf338e765a78370d607a2f774b702da2b39f9f49cb45b0aa5
|
|
7
|
+
data.tar.gz: '09702769af3deb2e6e798f6baf3a045d94201e91c680e55b1058d24461a82c96f81a3547f0aa5bb0782c2e90ecc0a81839ccfbf2730668ed746be7b0da199a22'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.13.0](https://github.com/puppetlabs/beaker-pe/tree/2.13.0) (2023-08-08)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/puppetlabs/beaker-pe/compare/2.12.0...2.13.0)
|
|
6
|
+
|
|
7
|
+
**Implemented enhancements:**
|
|
8
|
+
|
|
9
|
+
- \(PE-36506\) Use AIX 7.2 packages for 2023 STS stream [\#226](https://github.com/puppetlabs/beaker-pe/pull/226) ([donoghuc](https://github.com/donoghuc))
|
|
10
|
+
|
|
11
|
+
**Fixed bugs:**
|
|
12
|
+
|
|
13
|
+
- \(RE-15688\) Add working nodeset for beaker-rspec tests [\#227](https://github.com/puppetlabs/beaker-pe/pull/227) ([yachub](https://github.com/yachub))
|
|
14
|
+
|
|
3
15
|
## [2.12.0](https://github.com/puppetlabs/beaker-pe/tree/2.12.0) (2023-05-12)
|
|
4
16
|
|
|
5
17
|
[Full Changelog](https://github.com/puppetlabs/beaker-pe/compare/2.11.24...2.12.0)
|
data/Gemfile.lock
CHANGED
|
@@ -7,11 +7,6 @@ hosts.each do |host|
|
|
|
7
7
|
on host, facter('--help')
|
|
8
8
|
end
|
|
9
9
|
|
|
10
|
-
step 'puppet install smoketest: verify \'hiera --help\' can be successfully called on all hosts'
|
|
11
|
-
hosts.each do |host|
|
|
12
|
-
on host, hiera('--help')
|
|
13
|
-
end
|
|
14
|
-
|
|
15
10
|
step 'puppet install smoketest: verify \'puppet help\' can be successfully called on all hosts'
|
|
16
11
|
hosts.each do |host|
|
|
17
12
|
on host, puppet('help')
|
|
@@ -495,9 +495,9 @@ module Beaker
|
|
|
495
495
|
# For some platforms (e.g, redhatfips), packaging_platfrom is set and should
|
|
496
496
|
# be used as the primary source of truth for the platform string.
|
|
497
497
|
platform = host['packaging_platform'] || host['platform']
|
|
498
|
-
# We don't have a separate AIX 7.2 build, so it is
|
|
498
|
+
# We don't have a separate AIX 7.2 build prior to 2023, so it is
|
|
499
499
|
# classified as 7.1 for pe_repo purposes
|
|
500
|
-
if platform == "aix-7.2-power"
|
|
500
|
+
if platform == "aix-7.2-power" && version_is_less(master[:pe_ver], '2023.0.0')
|
|
501
501
|
platform = "aix-7.1-power"
|
|
502
502
|
end
|
|
503
503
|
klass = platform.gsub(/-/, '_').gsub(/\./,'')
|
data/lib/beaker-pe/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beaker-pe
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Puppetlabs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-08-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -296,6 +296,7 @@ files:
|
|
|
296
296
|
- lib/beaker-pe/pe-client-tools/install_helper.rb
|
|
297
297
|
- lib/beaker-pe/version.rb
|
|
298
298
|
- release-prep
|
|
299
|
+
- spec/acceptance/nodesets/default.yml
|
|
299
300
|
- spec/beaker-pe/helpers_spec.rb
|
|
300
301
|
- spec/beaker-pe/install/ca_utils_spec.rb
|
|
301
302
|
- spec/beaker-pe/install/feature_flags_spec.rb
|