beaker-hostgenerator 2.14.2 → 2.16.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 +17 -1
- data/lib/beaker-hostgenerator/data.rb +12 -1
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 171b96c4e6e20172b0db16d0a6edeac739b75680305f31dc4a366535cb60d383
|
|
4
|
+
data.tar.gz: b0bd6d1974ef6018542350135d185da92fe2c3b32edf365b81d3fa27f99a7ce7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 126fa35da4055a738497e99c892d9e1d01b8c7639e77089036170283bc27c7efd770929ae58d5edbb29d728f9eb80f63445c1ec72fc74884e153629d661ff85a
|
|
7
|
+
data.tar.gz: e579c9c93032f3dd518dfd498637e20368be72fc0e0f6cad87a5addad5dea9fe26ff903b55e34fae4f7db333924a71895a09cde09f4f37f1c32f7d4cb65887ca
|
data/CHANGELOG.md
CHANGED
|
@@ -2,13 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.16.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.16.0) (2024-09-10)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.15.0...2.16.0)
|
|
8
|
+
|
|
9
|
+
**Merged pull requests:**
|
|
10
|
+
|
|
11
|
+
- \(RE-16581\) Make main PE 2025 [\#384](https://github.com/voxpupuli/beaker-hostgenerator/pull/384) ([nmburgan](https://github.com/nmburgan))
|
|
12
|
+
|
|
13
|
+
## [2.15.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.15.0) (2024-08-22)
|
|
14
|
+
|
|
15
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.14.2...2.15.0)
|
|
16
|
+
|
|
17
|
+
**Implemented enhancements:**
|
|
18
|
+
|
|
19
|
+
- Add support for oracle9-aarch64 [\#382](https://github.com/voxpupuli/beaker-hostgenerator/pull/382) ([smahima27](https://github.com/smahima27))
|
|
20
|
+
|
|
5
21
|
## [2.14.2](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.14.2) (2024-07-04)
|
|
6
22
|
|
|
7
23
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.14.1...2.14.2)
|
|
8
24
|
|
|
9
25
|
**Fixed bugs:**
|
|
10
26
|
|
|
11
|
-
- Fix template name for rocky9 and almalinux9 arm [\#380](https://github.com/voxpupuli/beaker-hostgenerator/pull/380) ([
|
|
27
|
+
- Fix template name for rocky9 and almalinux9 arm [\#380](https://github.com/voxpupuli/beaker-hostgenerator/pull/380) ([skyamgarp](https://github.com/skyamgarp))
|
|
12
28
|
|
|
13
29
|
## [2.14.1](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.14.1) (2024-06-28)
|
|
14
30
|
|
|
@@ -14,7 +14,7 @@ module BeakerHostGenerator
|
|
|
14
14
|
module Data
|
|
15
15
|
module_function
|
|
16
16
|
|
|
17
|
-
MAIN_PE_VERSION = '
|
|
17
|
+
MAIN_PE_VERSION = '2025.0'
|
|
18
18
|
PE_TARBALL_SERVER = 'https://artifactory.delivery.puppetlabs.net/artifactory/generic_enterprise__local'
|
|
19
19
|
|
|
20
20
|
def pe_version
|
|
@@ -441,6 +441,17 @@ module BeakerHostGenerator
|
|
|
441
441
|
'template' => 'redhat-9-power9',
|
|
442
442
|
},
|
|
443
443
|
},
|
|
444
|
+
'oracle9-AARCH64' => {
|
|
445
|
+
general: {
|
|
446
|
+
'platform' => 'el-9-aarch64',
|
|
447
|
+
},
|
|
448
|
+
abs: {
|
|
449
|
+
'template' => 'oracle-9-arm64',
|
|
450
|
+
},
|
|
451
|
+
vmpooler: {
|
|
452
|
+
'template' => 'oracle-9-arm64',
|
|
453
|
+
},
|
|
454
|
+
},
|
|
444
455
|
'sles11-32' => {
|
|
445
456
|
general: {
|
|
446
457
|
'platform' => 'sles-11-i386',
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beaker-hostgenerator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.16.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Branan Purvine-Riley
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2024-
|
|
14
|
+
date: 2024-09-10 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: fakefs
|
|
@@ -195,7 +195,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
195
195
|
- !ruby/object:Gem::Version
|
|
196
196
|
version: '0'
|
|
197
197
|
requirements: []
|
|
198
|
-
rubygems_version: 3.5.
|
|
198
|
+
rubygems_version: 3.5.16
|
|
199
199
|
signing_key:
|
|
200
200
|
specification_version: 4
|
|
201
201
|
summary: Beaker Host Generator Utility
|