beaker-hostgenerator 2.12.2 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 981ece2572dcc91e9f08e48dd504ae4fbdcf6a2abcbae7d815ebc4f980b674f2
4
- data.tar.gz: 9711724a2d267091e8bbd882d21226735312faf9353520f0d315f0171855c819
3
+ metadata.gz: 680ccebc40050850d136716c311808a743cbe5c8144cd42df30f7077c57e7182
4
+ data.tar.gz: 36502f40ac0e6cfca8e7a91d80d7b5d17ef59346e5e4aa3b1a73d4dd1cdd39b5
5
5
  SHA512:
6
- metadata.gz: 9fc416d3ba3249547c17e022e0edaeb05cfa0f7a835b16d538fbd60be6cfb7de02419254d899954bfe58028a1d2ccafeff015ccc2653c9ec0fa9afb438044641
7
- data.tar.gz: 8c89963239988066e0d0b8a932c0abfbe0d94e6ecaa48451670092b4f95560ab72d4e4a37c0f200827cb71f86b3c051212f92b07e06a2ca73e22c72c647dd007
6
+ metadata.gz: 78b8ceb1152374e9371a7f95670d100264726f048fbd146a5efdd56c6b5e590983d465257936347e7e59c747424fe2e26385d5eb61e58fff0fdf50a2ff3e9fac
7
+ data.tar.gz: c900a82cdceeed131f1054ecf2584e5cdd57fb4cbb7cabad5ab4cfc58f5c66daa02cf667de4ba1f4e61d2cd5cbf2bbece0a31dd376e52f550c05c91d70a9f9b6
data/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
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
+
5
17
  ## [2.12.2](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.12.2) (2024-05-22)
6
18
 
7
19
  [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
 
@@ -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 node_info['bits'] == '64' && !base_config['image'].start_with?('quay.io/')
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
@@ -1,5 +1,5 @@
1
1
  module BeakerHostGenerator
2
2
  module Version
3
- STRING = '2.12.2'
3
+ STRING = '2.13.0'
4
4
  end
5
5
  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.12.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-05-22 00:00:00.000000000 Z
14
+ date: 2024-06-04 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: fakefs