beaker-hostgenerator 2.12.1 → 2.13.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 +17 -0
- data/lib/beaker-hostgenerator/hypervisor/docker.rb +4 -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: 680ccebc40050850d136716c311808a743cbe5c8144cd42df30f7077c57e7182
|
|
4
|
+
data.tar.gz: 36502f40ac0e6cfca8e7a91d80d7b5d17ef59346e5e4aa3b1a73d4dd1cdd39b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 78b8ceb1152374e9371a7f95670d100264726f048fbd146a5efdd56c6b5e590983d465257936347e7e59c747424fe2e26385d5eb61e58fff0fdf50a2ff3e9fac
|
|
7
|
+
data.tar.gz: c900a82cdceeed131f1054ecf2584e5cdd57fb4cbb7cabad5ab4cfc58f5c66daa02cf667de4ba1f4e61d2cd5cbf2bbece0a31dd376e52f550c05c91d70a9f9b6
|
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.13.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.13.0) (2024-06-04)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.12.2...2.13.0)
|
|
8
|
+
|
|
9
|
+
**Implemented enhancements:**
|
|
10
|
+
|
|
11
|
+
- Add Amazon 2 [\#372](https://github.com/voxpupuli/beaker-hostgenerator/pull/372) ([joshcooper](https://github.com/joshcooper))
|
|
12
|
+
|
|
13
|
+
**Fixed bugs:**
|
|
14
|
+
|
|
15
|
+
- Don't prepend amd64/ for opensuse images [\#371](https://github.com/voxpupuli/beaker-hostgenerator/pull/371) ([h-haaks](https://github.com/h-haaks))
|
|
16
|
+
|
|
17
|
+
## [2.12.2](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.12.2) (2024-05-22)
|
|
18
|
+
|
|
19
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.12.1...2.12.2)
|
|
20
|
+
|
|
21
|
+
**Fixed bugs:**
|
|
22
|
+
|
|
23
|
+
- Use Red Hat 7 for Amazon Linux 2 x86\_64 [\#369](https://github.com/voxpupuli/beaker-hostgenerator/pull/369) ([mhashizume](https://github.com/mhashizume))
|
|
24
|
+
|
|
5
25
|
## [2.12.1](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.12.1) (2024-05-21)
|
|
6
26
|
|
|
7
27
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.12.0...2.12.1)
|
|
@@ -114,6 +114,22 @@ module BeakerHostGenerator
|
|
|
114
114
|
'template' => 'amazon-6-x86_64',
|
|
115
115
|
},
|
|
116
116
|
},
|
|
117
|
+
'amazon7-64' => {
|
|
118
|
+
general: {
|
|
119
|
+
'platform' => 'el-7-x86_64',
|
|
120
|
+
},
|
|
121
|
+
abs: {
|
|
122
|
+
'template' => 'amazon-7-x86_64',
|
|
123
|
+
},
|
|
124
|
+
},
|
|
125
|
+
'amazon2-AARCH64' => {
|
|
126
|
+
general: {
|
|
127
|
+
'platform' => 'amazon-2-aarch64',
|
|
128
|
+
},
|
|
129
|
+
abs: {
|
|
130
|
+
'template' => 'amazon-7-arm64',
|
|
131
|
+
},
|
|
132
|
+
},
|
|
117
133
|
'archlinuxrolling-64' => {
|
|
118
134
|
general: {
|
|
119
135
|
'platform' => 'archlinux-rolling-x64',
|
|
@@ -1115,6 +1131,7 @@ module BeakerHostGenerator
|
|
|
1115
1131
|
# Amazon Linux
|
|
1116
1132
|
yield %w[amazon7-64 amazon-7-x86_64]
|
|
1117
1133
|
yield %w[amazon7-AARCH64 amazon-7-aarch64]
|
|
1134
|
+
yield %w[amazon2-AARCH64 amazon-2-aarch64]
|
|
1118
1135
|
yield %w[amazon2023-64 amazon-2023-x86_64]
|
|
1119
1136
|
yield %w[amazon2023-AARCH64 amazon-2023-aarch64]
|
|
1120
1137
|
|
|
@@ -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.13.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-04 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: fakefs
|