beaker-hostgenerator 3.5.0 → 3.6.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 76d7005199ffe80ac44c0e784cc65f9f36b9f2092afd0c421cb2709ace68be9b
|
|
4
|
+
data.tar.gz: df3efd5de0d69727a9a37640668e5bcaac3751e3c0c523bbd108270ac939eb64
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: baace4337beeab2c180eea3aee328e9ec68e595a39bf5e2ed75c523af5f3d27c36ba22eaf1a762db57bf8f8faca5d0fcde1b252a13b2d985a0559a42c5f9046d
|
|
7
|
+
data.tar.gz: 2584a3b3311e4b9b129424def67be29fafda70fd0fe4f855e4765ba604903186ff7acf1ad2de4c14b5c7e38d032b971c1a264bd8430a8d194dcdb1a0bca24f97
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [3.6.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/3.6.0) (2026-04-27)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/3.5.0...3.6.0)
|
|
8
|
+
|
|
9
|
+
**Implemented enhancements:**
|
|
10
|
+
|
|
11
|
+
- Add Ubuntu 26.04 support [\#463](https://github.com/voxpupuli/beaker-hostgenerator/pull/463) ([bastelfreak](https://github.com/bastelfreak))
|
|
12
|
+
- Add redhat support to docker hypervisor [\#459](https://github.com/voxpupuli/beaker-hostgenerator/pull/459) ([melck](https://github.com/melck))
|
|
13
|
+
- Add Debian 13 \(Trixie\) support for Vagrant hypervisor [\#458](https://github.com/voxpupuli/beaker-hostgenerator/pull/458) ([melck](https://github.com/melck))
|
|
14
|
+
|
|
5
15
|
## [3.5.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/3.5.0) (2026-03-18)
|
|
6
16
|
|
|
7
17
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/3.4.0...3.5.0)
|
|
@@ -779,7 +779,7 @@ module BeakerHostGenerator
|
|
|
779
779
|
# Ubuntu
|
|
780
780
|
#
|
|
781
781
|
# Generate LTS platforms
|
|
782
|
-
(18..
|
|
782
|
+
(18..26).select(&:even?).each do |release|
|
|
783
783
|
yield ["ubuntu#{release}04-64", "ubuntu-#{release}.04-amd64"]
|
|
784
784
|
|
|
785
785
|
yield ["ubuntu#{release}04-POWER", "ubuntu-#{release}.04-ppc64el"]
|
|
@@ -20,7 +20,8 @@ module BeakerHostGenerator
|
|
|
20
20
|
base_config['image'].prepend('amd64/') if
|
|
21
21
|
node_info['bits'] == '64' &&
|
|
22
22
|
!base_config['image'].start_with?('quay.io/') &&
|
|
23
|
-
!base_config['image'].start_with?('opensuse/')
|
|
23
|
+
!base_config['image'].start_with?('opensuse/') &&
|
|
24
|
+
!ostype.start_with?('redhat')
|
|
24
25
|
|
|
25
26
|
base_generate_node(node_info, base_config, bhg_version, :docker)
|
|
26
27
|
end
|
|
@@ -31,6 +32,9 @@ module BeakerHostGenerator
|
|
|
31
32
|
image = ostype.sub(/(\d)/, ':\1')
|
|
32
33
|
|
|
33
34
|
case ostype
|
|
35
|
+
when /^redhat/
|
|
36
|
+
version = ostype.delete_prefix('redhat')
|
|
37
|
+
image = "redhat/ubi#{version}-init:latest"
|
|
34
38
|
when /^centos/
|
|
35
39
|
version = ostype.delete_prefix('centos')
|
|
36
40
|
tag = (version.to_i >= 8) ? "stream#{version}" : "centos#{version}"
|