beaker-hostgenerator 2.8.1 → 2.9.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: 2d16f9bf91097af646703d9ad0a46c9cff0702356d93955312bb630bb1858c9b
4
- data.tar.gz: 01010abaa0439206cf53e7d0a98f5d16f00675b75eef2df01634c740c2035326
3
+ metadata.gz: 18a555f154cfac8226cb7b298bbd9a23d01d261f75c62be6483125c3a59e0340
4
+ data.tar.gz: 1c256a05ab502937b9075d87575ab9d9f95dd1625543e92b2b8aef8481f3995c
5
5
  SHA512:
6
- metadata.gz: 4830a0451214d90ccb4e7bc342f5cce95cb222a9833d681fc46291cc65ca094e0e2f0a7dc5ff129db89e803f5890b26a06545aa5992b6f9f1a1c1229a6b1a4b4
7
- data.tar.gz: 56c55f4719fd39883a5d95096e03377e77573aca2b64594e4b6aac4d5599f7936dd6a0be1ba98a173b2df42c4bb6da7ed5f874677229e945cd6f5a4688030a96
6
+ metadata.gz: 3dfa4d5d5c27fd862f79700fac9adcd7b6a06cc4d6d446faf15923d01b9efd89ff90068888324355a78454b0b937b1b1161d9a46fcc15d4557f250237d9f9a5f
7
+ data.tar.gz: 4502807be054160529b6ddad094491ec03a9963512a50e0397d5e2ecc467d1a6e5b768fd10c20d11e6dd96012795757527efa6664f67f1bb0a1648e517b339fa
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.9.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.9.0) (2023-11-27)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.8.2...2.9.0)
8
+
9
+ **Implemented enhancements:**
10
+
11
+ - Add Fedora 39 support [\#347](https://github.com/voxpupuli/beaker-hostgenerator/pull/347) ([kenyon](https://github.com/kenyon))
12
+
13
+ **Fixed bugs:**
14
+
15
+ - readme fixes [\#348](https://github.com/voxpupuli/beaker-hostgenerator/pull/348) ([kenyon](https://github.com/kenyon))
16
+
17
+ ## [2.8.2](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.8.2) (2023-11-20)
18
+
19
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.8.1...2.8.2)
20
+
21
+ **Fixed bugs:**
22
+
23
+ - \(PA-5948\) Update host generator to use aarch64 for amazon linux [\#345](https://github.com/voxpupuli/beaker-hostgenerator/pull/345) ([span786](https://github.com/span786))
24
+
5
25
  ## [2.8.1](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.8.1) (2023-11-15)
6
26
 
7
27
  [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.8.0...2.8.1)
data/README.md CHANGED
@@ -394,9 +394,9 @@ expected_hash:
394
394
  HOSTS:
395
395
  centos9-64-1:
396
396
  pe_dir: "/opt/hello"
397
- pe_ver:
398
- pe_upgrade_dir:
399
- pe_upgrade_ver:
397
+ pe_ver:
398
+ pe_upgrade_dir:
399
+ pe_upgrade_ver:
400
400
  hypervisor: vmpooler
401
401
  platform: el-9-x86_64
402
402
  template: centos-9-x86_64
@@ -409,7 +409,7 @@ expected_hash:
409
409
  nfs_server: none
410
410
  consoleport: 443
411
411
  pooling_api: http://vmpooler.delivery.puppetlabs.net/
412
- expected_exception:
412
+ expected_exception:
413
413
  ```
414
414
 
415
415
  These test fixtures are yaml files searched for in the directory
@@ -421,7 +421,7 @@ keys:
421
421
  - `environment_variables`: The environment variables that should be set during
422
422
  the `beaker-hostgenerator` call.
423
423
  - `expected_hash`: A hash that should match the output of `beaker-hostgenerator`
424
- when it is run with `options\_string`
424
+ when it is run with `arguments_string`
425
425
  - `expected_exception`: If the `arguments_string` passed to `beaker-hostgenerator`
426
426
  is expected to lead to an exceptional state, this is the name of the exception
427
427
  that the fixture test will attempt to match.
@@ -1078,7 +1078,7 @@ module BeakerHostGenerator
1078
1078
  yield %w[aix73-POWER aix-7.3-power]
1079
1079
 
1080
1080
  # Fedora
1081
- (19..38).each do |release|
1081
+ (19..39).each do |release|
1082
1082
  # 32 bit support was dropped in Fedora 31
1083
1083
  yield ["fedora#{release}-32", "fedora-#{release}-i386"] if release < 31
1084
1084
 
@@ -1111,7 +1111,7 @@ module BeakerHostGenerator
1111
1111
 
1112
1112
  # Amazon Linux
1113
1113
  yield %w[amazon2023-64 amazon-2023-x86_64]
1114
- yield %w[amazon2023-AARCH64 amazon-2023-arm64]
1114
+ yield %w[amazon2023-AARCH64 amazon-2023-aarch64]
1115
1115
 
1116
1116
  # AlmaLinux and Rocky
1117
1117
  %w[almalinux rocky].each do |os|
@@ -25,9 +25,9 @@ module BeakerHostGenerator
25
25
  case node_info['ostype']
26
26
  when /^(almalinux|centos|oracle|redhat|rocky|scientific)/
27
27
  base_config['template'] ||= base_config['platform']&.gsub(/^el/, ::Regexp.last_match(1))
28
- when /^aix/, /^amazon/, /^fedora/, /^opensuse/, /^panos/
28
+ when /^aix/, /^fedora/, /^opensuse/, /^panos/
29
29
  base_config['template'] ||= base_config['platform']
30
- when /^(debian|ubuntu)/
30
+ when /^(debian|ubuntu|amazon)/
31
31
  os = Regexp.last_match(1)
32
32
  base_template = node_info['ostype'].sub(os, "#{os}-")
33
33
  arch = case node_info['bits']
@@ -1,5 +1,5 @@
1
1
  module BeakerHostGenerator
2
2
  module Version
3
- STRING = '2.8.1'
3
+ STRING = '2.9.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.8.1
4
+ version: 2.9.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: 2023-11-15 00:00:00.000000000 Z
14
+ date: 2023-11-27 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: fakefs