beaker-hostgenerator 2.12.1 → 2.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4616232d6dbef7f9bdaff27238da6ab36f128e81bea3f217d93f928e161bf1d6
4
- data.tar.gz: ce2ad153a63cefc33f0a780122901b7f2c32d411cd8334389af4c5ec484c31a6
3
+ metadata.gz: 680ccebc40050850d136716c311808a743cbe5c8144cd42df30f7077c57e7182
4
+ data.tar.gz: 36502f40ac0e6cfca8e7a91d80d7b5d17ef59346e5e4aa3b1a73d4dd1cdd39b5
5
5
  SHA512:
6
- metadata.gz: '0286990b05298928e80bc6d0c15e2cb4031d067d7828b13f04161ac48994136b29b4654e8498de9160e1fdcd78d3cec8ee2ed42039d4655fef68eabeb1d510c5'
7
- data.tar.gz: f208ad0bb834240dcefa774b205a813b3e8619b6a9dfc62a1ed9195ad886dd5bb4dad3cad8d386b26a3144e4ccc1126ca0b8d352eedce9124f05e962e1c3044a
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 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.1'
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.1
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-21 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