beaker-hostgenerator 1.8.0 → 1.9.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 +8 -0
- data/lib/beaker-hostgenerator/data.rb +9 -0
- 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: b029cb7fb82dfd9c0395e36986057098114599b5c2c89bf3e0ae6dc004b91daf
|
|
4
|
+
data.tar.gz: 0bef6910676fe6773af2c88ec79a1d6d8061c1a26551ef491b76e13f891e348a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9de374a8805989b1cc6cd8be3d0fa0460cb09c66cc20beafdade548a2d8d6426f4f137192da116aab4569b19496fb0df183ce9c5aaebbebc687f4576b4b90e06
|
|
7
|
+
data.tar.gz: 7e5f8ac6690a383358d27d701dceda088fe259d281d8b6e06e8741d44e6e14f53e095a91830f6421557081df8fb72b8e2666a50e6b782015c3a84f2407d33283
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.9.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.9.0) (2021-12-07)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.8.0...1.9.0)
|
|
8
|
+
|
|
9
|
+
**Implemented enhancements:**
|
|
10
|
+
|
|
11
|
+
- \(IMAGES-1323\) Adds RedHat 9 support [\#235](https://github.com/voxpupuli/beaker-hostgenerator/pull/235) ([mhashizume](https://github.com/mhashizume))
|
|
12
|
+
|
|
5
13
|
## [1.8.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.8.0) (2021-10-25)
|
|
6
14
|
|
|
7
15
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.7.1...1.8.0)
|
|
@@ -1033,6 +1033,15 @@ module BeakerHostGenerator
|
|
|
1033
1033
|
'template' => 'redhat-8-power8'
|
|
1034
1034
|
}
|
|
1035
1035
|
},
|
|
1036
|
+
'redhat9-64' => {
|
|
1037
|
+
:general => {
|
|
1038
|
+
'platform' => 'el-9-x86_64',
|
|
1039
|
+
'packaging_platform' => 'el-9-x86_64'
|
|
1040
|
+
},
|
|
1041
|
+
:vmpooler => {
|
|
1042
|
+
'template' => 'redhat-9-x86_64'
|
|
1043
|
+
}
|
|
1044
|
+
},
|
|
1036
1045
|
'rocky8-64' => {
|
|
1037
1046
|
:general => {
|
|
1038
1047
|
'platform' => 'el-8-x86_64',
|
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: 1.
|
|
4
|
+
version: 1.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Branan Purvine-Riley
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2021-
|
|
13
|
+
date: 2021-12-08 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: minitest
|
|
@@ -208,7 +208,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
208
208
|
- !ruby/object:Gem::Version
|
|
209
209
|
version: '0'
|
|
210
210
|
requirements: []
|
|
211
|
-
rubygems_version: 3.2.
|
|
211
|
+
rubygems_version: 3.2.32
|
|
212
212
|
signing_key:
|
|
213
213
|
specification_version: 4
|
|
214
214
|
summary: Beaker Host Generator Utility
|