beaker-hostgenerator 2.12.2 → 2.14.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 +20 -0
- data/lib/beaker-hostgenerator/data.rb +10 -0
- data/lib/beaker-hostgenerator/hypervisor/docker.rb +4 -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: b10006d9f94ec9d605862c04420b47e4b9558b0f0621fb546b497792a0c71926
|
|
4
|
+
data.tar.gz: b0d56b7c383b60fc2be9ab158e5ddce34e9e475aef813e1f48bf5dc5ae8ccf93
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 02e69b1e06ae2ec5c5a9682e8d467053af3c1c22e39a3389bc32d3736ab209620e2af805751eb8b12dddea18483ab1c399a69c996d6875acd124f18145f54c3c
|
|
7
|
+
data.tar.gz: 739e4f20adf6a43a3ff071213a5bad11d8a9c7608156cf011234fa1ba7e07f00db8897d50620298b8f0189cd30e443dcc246bfbdb7353d93358997e2cd66dab1
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.14.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.14.0) (2024-06-26)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.13.0...2.14.0)
|
|
8
|
+
|
|
9
|
+
**Implemented enhancements:**
|
|
10
|
+
|
|
11
|
+
- Add Almalinux9 AARCH64 and Rocky9 AARCH64 [\#376](https://github.com/voxpupuli/beaker-hostgenerator/pull/376) ([smahima27](https://github.com/smahima27))
|
|
12
|
+
|
|
13
|
+
## [2.13.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.13.0) (2024-06-04)
|
|
14
|
+
|
|
15
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.12.2...2.13.0)
|
|
16
|
+
|
|
17
|
+
**Implemented enhancements:**
|
|
18
|
+
|
|
19
|
+
- Add Amazon 2 [\#372](https://github.com/voxpupuli/beaker-hostgenerator/pull/372) ([joshcooper](https://github.com/joshcooper))
|
|
20
|
+
|
|
21
|
+
**Fixed bugs:**
|
|
22
|
+
|
|
23
|
+
- Don't prepend amd64/ for opensuse images [\#371](https://github.com/voxpupuli/beaker-hostgenerator/pull/371) ([h-haaks](https://github.com/h-haaks))
|
|
24
|
+
|
|
5
25
|
## [2.12.2](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.12.2) (2024-05-22)
|
|
6
26
|
|
|
7
27
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.12.1...2.12.2)
|
|
@@ -122,6 +122,14 @@ module BeakerHostGenerator
|
|
|
122
122
|
'template' => 'amazon-7-x86_64',
|
|
123
123
|
},
|
|
124
124
|
},
|
|
125
|
+
'amazon2-AARCH64' => {
|
|
126
|
+
general: {
|
|
127
|
+
'platform' => 'amazon-2-aarch64',
|
|
128
|
+
},
|
|
129
|
+
abs: {
|
|
130
|
+
'template' => 'amazon-7-arm64',
|
|
131
|
+
},
|
|
132
|
+
},
|
|
125
133
|
'archlinuxrolling-64' => {
|
|
126
134
|
general: {
|
|
127
135
|
'platform' => 'archlinux-rolling-x64',
|
|
@@ -1123,6 +1131,7 @@ module BeakerHostGenerator
|
|
|
1123
1131
|
# Amazon Linux
|
|
1124
1132
|
yield %w[amazon7-64 amazon-7-x86_64]
|
|
1125
1133
|
yield %w[amazon7-AARCH64 amazon-7-aarch64]
|
|
1134
|
+
yield %w[amazon2-AARCH64 amazon-2-aarch64]
|
|
1126
1135
|
yield %w[amazon2023-64 amazon-2023-x86_64]
|
|
1127
1136
|
yield %w[amazon2023-AARCH64 amazon-2023-aarch64]
|
|
1128
1137
|
|
|
@@ -1130,6 +1139,7 @@ module BeakerHostGenerator
|
|
|
1130
1139
|
%w[almalinux rocky].each do |os|
|
|
1131
1140
|
(8..9).each do |release|
|
|
1132
1141
|
yield ["#{os}#{release}-64", "el-#{release}-x86_64"]
|
|
1142
|
+
yield ["#{os}#{release}-AARCH64", "el-#{release}-aarch64"]
|
|
1133
1143
|
end
|
|
1134
1144
|
end
|
|
1135
1145
|
|
|
@@ -17,7 +17,10 @@ module BeakerHostGenerator
|
|
|
17
17
|
end
|
|
18
18
|
|
|
19
19
|
base_config['image'] = image(ostype)
|
|
20
|
-
base_config['image'].prepend('amd64/') if
|
|
20
|
+
base_config['image'].prepend('amd64/') if
|
|
21
|
+
node_info['bits'] == '64' &&
|
|
22
|
+
!base_config['image'].start_with?('quay.io/') &&
|
|
23
|
+
!base_config['image'].start_with?('opensuse/')
|
|
21
24
|
|
|
22
25
|
base_generate_node(node_info, base_config, bhg_version, :docker)
|
|
23
26
|
end
|
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.14.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-06-26 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.11
|
|
199
199
|
signing_key:
|
|
200
200
|
specification_version: 4
|
|
201
201
|
summary: Beaker Host Generator Utility
|