beaker-hostgenerator 2.14.1 → 2.15.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 +16 -0
- data/lib/beaker-hostgenerator/data.rb +53 -8
- 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: 9661ec74cd92772d21c330e9b419b52eb08cf40f9765da034873a3655a1d4694
|
4
|
+
data.tar.gz: 9bd5345e1114b4a3c700d39f11d37e6fb46f364e002b62acd7a302c058d147a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2dc145c0cf45b79051306432da33e65817f24bca0b9e1260dc4b00c63ab5b6e2e10a50f5f607e64d57a8be5d15c0ba06201a5703b5653c12987fdcf05aa30ef6
|
7
|
+
data.tar.gz: 775fa007c7f624a209add92cbdc5018a14a5bbdf1801823c54603f784dca1d26f25924c895d40a27c957e418fa15c8eb06da84086863418ce7ff86330749f4cd
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,22 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [2.15.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.15.0) (2024-08-22)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.14.2...2.15.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- Add support for oracle9-aarch64 [\#382](https://github.com/voxpupuli/beaker-hostgenerator/pull/382) ([smahima27](https://github.com/smahima27))
|
12
|
+
|
13
|
+
## [2.14.2](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.14.2) (2024-07-04)
|
14
|
+
|
15
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.14.1...2.14.2)
|
16
|
+
|
17
|
+
**Fixed bugs:**
|
18
|
+
|
19
|
+
- Fix template name for rocky9 and almalinux9 arm [\#380](https://github.com/voxpupuli/beaker-hostgenerator/pull/380) ([skyamgarp](https://github.com/skyamgarp))
|
20
|
+
|
5
21
|
## [2.14.1](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.14.1) (2024-06-28)
|
6
22
|
|
7
23
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.14.0...2.14.1)
|
@@ -391,6 +391,48 @@ module BeakerHostGenerator
|
|
391
391
|
'template' => 'redhat-9-arm64',
|
392
392
|
},
|
393
393
|
},
|
394
|
+
'rocky8-64' => {
|
395
|
+
general: {
|
396
|
+
'platform' => 'el-8-x86_64',
|
397
|
+
},
|
398
|
+
},
|
399
|
+
'rocky9-64' => {
|
400
|
+
general: {
|
401
|
+
'platform' => 'el-9-x86_64',
|
402
|
+
},
|
403
|
+
},
|
404
|
+
'rocky9-AARCH64' => {
|
405
|
+
general: {
|
406
|
+
'platform' => 'el-9-aarch64',
|
407
|
+
},
|
408
|
+
abs: {
|
409
|
+
'template' => 'rocky-9-arm64',
|
410
|
+
},
|
411
|
+
vmpooler: {
|
412
|
+
'template' => 'rocky-9-arm64',
|
413
|
+
},
|
414
|
+
},
|
415
|
+
'almalinux8-64' => {
|
416
|
+
general: {
|
417
|
+
'platform' => 'el-8-x86_64',
|
418
|
+
},
|
419
|
+
},
|
420
|
+
'almalinux9-64' => {
|
421
|
+
general: {
|
422
|
+
'platform' => 'el-9-x86_64',
|
423
|
+
},
|
424
|
+
},
|
425
|
+
'almalinux9-AARCH64' => {
|
426
|
+
general: {
|
427
|
+
'platform' => 'el-9-aarch64',
|
428
|
+
},
|
429
|
+
abs: {
|
430
|
+
'template' => 'almalinux-9-arm64',
|
431
|
+
},
|
432
|
+
vmpooler: {
|
433
|
+
'template' => 'almalinux-9-arm64',
|
434
|
+
},
|
435
|
+
},
|
394
436
|
'redhat9-POWER' => {
|
395
437
|
general: {
|
396
438
|
'platform' => 'el-9-ppc64le',
|
@@ -399,6 +441,17 @@ module BeakerHostGenerator
|
|
399
441
|
'template' => 'redhat-9-power9',
|
400
442
|
},
|
401
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
|
+
},
|
402
455
|
'sles11-32' => {
|
403
456
|
general: {
|
404
457
|
'platform' => 'sles-11-i386',
|
@@ -1135,14 +1188,6 @@ module BeakerHostGenerator
|
|
1135
1188
|
yield %w[amazon2023-64 amazon-2023-x86_64]
|
1136
1189
|
yield %w[amazon2023-AARCH64 amazon-2023-aarch64]
|
1137
1190
|
|
1138
|
-
# AlmaLinux and Rocky
|
1139
|
-
%w[almalinux rocky].each do |os|
|
1140
|
-
(8..9).each do |release|
|
1141
|
-
yield ["#{os}#{release}-64", "el-#{release}-x86_64"]
|
1142
|
-
yield ["#{os}#{release}-AARCH64", "el-#{release}-aarch64"]
|
1143
|
-
end
|
1144
|
-
end
|
1145
|
-
|
1146
1191
|
# Oracle / OracleLinux
|
1147
1192
|
yield ['oracle6-32', 'el-6-i386']
|
1148
1193
|
(6..9).each do |release|
|
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.15.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-08-22 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: fakefs
|