beaker-hostgenerator 1.3.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/lib/beaker-hostgenerator/data.rb +25 -1
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 989df830d08bfb7726aaf9ec65529668898cda03efe855b1627f31185c66680a
|
4
|
+
data.tar.gz: 274abeb00d5230dd22125fd8bfc4a50901a76dbd2cec5b2c646c1eae60aa28a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1edd1be82dfc67db26c277b95880df4da410cb90083f80d0a146e39b5104b4c3d62e0e4dd974d2fa333d78871bec3baa1c3128c3c4e9d1a4da1d14730f6d6db
|
7
|
+
data.tar.gz: 8768bc0e4ddbac23d5fe918943b4560d605f4dc6386ef100d07af508340b5f5052e849b55d1e1c4fafa0a28686770f5a56973ff0c003c8df7c94e92f3a97364c
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,19 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [1.4.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.4.0) (2021-05-11)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.3.0...1.4.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- \(IMAGES-1273\) add support for Debian 11 amd64 [\#210](https://github.com/voxpupuli/beaker-hostgenerator/pull/210) ([ciprianbadescu](https://github.com/ciprianbadescu))
|
12
|
+
- Add support for redhat8-POWER \(el-8-ppc64le\) [\#208](https://github.com/voxpupuli/beaker-hostgenerator/pull/208) ([GabrielNagy](https://github.com/GabrielNagy))
|
13
|
+
|
14
|
+
**Merged pull requests:**
|
15
|
+
|
16
|
+
- Deal with nil when merging [\#209](https://github.com/voxpupuli/beaker-hostgenerator/pull/209) ([ekohl](https://github.com/ekohl))
|
17
|
+
|
5
18
|
## [1.3.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.3.0) (2021-04-15)
|
6
19
|
|
7
20
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.2.10...1.3.0)
|
@@ -587,6 +587,18 @@ module BeakerHostGenerator
|
|
587
587
|
'template' => 'debian-10-i386'
|
588
588
|
}
|
589
589
|
},
|
590
|
+
'debian11-64' => {
|
591
|
+
:general => {
|
592
|
+
'platform' => 'debian-11-amd64',
|
593
|
+
'packaging_platform' => 'debian-11-amd64'
|
594
|
+
},
|
595
|
+
:vagrant => {
|
596
|
+
'box' => 'debian/bullseye64',
|
597
|
+
},
|
598
|
+
:vmpooler => {
|
599
|
+
'template' => 'debian-11-x86_64'
|
600
|
+
}
|
601
|
+
},
|
590
602
|
'fedora14-32' => {
|
591
603
|
:general => {
|
592
604
|
'platform' => 'fedora-14-i386'
|
@@ -936,6 +948,15 @@ module BeakerHostGenerator
|
|
936
948
|
'template' => 'redhat-8-x86_64'
|
937
949
|
}
|
938
950
|
},
|
951
|
+
'redhat8-POWER' => {
|
952
|
+
:general => {
|
953
|
+
'platform' => 'el-8-ppc64le',
|
954
|
+
'packaging_platform' => 'el-8-ppc64le'
|
955
|
+
},
|
956
|
+
:abs => {
|
957
|
+
'template' => 'redhat-8-power8'
|
958
|
+
}
|
959
|
+
},
|
939
960
|
'scientific5-32' => {
|
940
961
|
:general => {
|
941
962
|
'platform' => 'el-5-i386',
|
@@ -1949,7 +1970,10 @@ module BeakerHostGenerator
|
|
1949
1970
|
# }
|
1950
1971
|
def get_platform_info(bhg_version, platform, hypervisor)
|
1951
1972
|
info = get_osinfo(bhg_version)[platform]
|
1952
|
-
{}
|
1973
|
+
result = {}
|
1974
|
+
result.deep_merge!(info[:general]) if info[:general]
|
1975
|
+
result.deep_merge!(info[hypervisor]) if info[hypervisor]
|
1976
|
+
result
|
1953
1977
|
end
|
1954
1978
|
|
1955
1979
|
# Perform any adjustments or modifications necessary to the given node
|
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.4.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-05-11 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|