beaker-hostgenerator 1.2.6 → 1.3.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/.github/dependabot.yml +8 -0
- data/.github/workflows/release.yml +22 -0
- data/.github/workflows/test.yml +27 -0
- data/CHANGELOG.md +1981 -308
- data/CODEOWNERS +0 -1
- data/Gemfile +5 -1
- data/HISTORY.md +53 -26
- data/README.md +14 -0
- data/Rakefile +24 -0
- data/beaker-hostgenerator.gemspec +2 -2
- data/lib/beaker-hostgenerator/data.rb +112 -213
- data/lib/beaker-hostgenerator/hypervisor/abs.rb +10 -1
- data/lib/beaker-hostgenerator/hypervisor/docker.rb +1 -0
- data/lib/beaker-hostgenerator/hypervisor/vagrant.rb +1 -1
- data/lib/beaker-hostgenerator/hypervisor/vmpooler.rb +7 -0
- data/lib/beaker-hostgenerator/parser.rb +3 -3
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +12 -9
data/CODEOWNERS
CHANGED
@@ -1 +0,0 @@
|
|
1
|
-
* @puppetlabs/beaker
|
data/Gemfile
CHANGED
@@ -1,7 +1,11 @@
|
|
1
|
-
source ENV['GEM_SOURCE'] ||
|
1
|
+
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
|
2
2
|
|
3
3
|
gemspec
|
4
4
|
|
5
5
|
if File.exists? "#{__FILE__}.local"
|
6
6
|
eval(File.read("#{__FILE__}.local"), binding)
|
7
7
|
end
|
8
|
+
|
9
|
+
group :release do
|
10
|
+
gem 'github_changelog_generator', :require => false
|
11
|
+
end
|
data/HISTORY.md
CHANGED
@@ -1,29 +1,56 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
1
|
+
## [1.1.26](https://github.com/voxpupuli/modulesync/tree/1.1.26) (2019-02-19)
|
2
|
+
- Add platform
|
3
|
+
- debian10-64
|
4
|
+
- debian10-32
|
5
|
+
- Change amazon7-ARM64 to use el-7-aarch64 platform
|
6
|
+
|
7
|
+
## [1.1.25] - 2019-01-07
|
8
|
+
- Fix --hypervisor vagrant_libvirt
|
9
|
+
|
10
|
+
## [1.1.24] - 2019-01-03
|
11
|
+
- Add platform:
|
12
|
+
- amazon7-ARM64
|
13
|
+
|
14
|
+
## [1.1.23] - 2018-12-13
|
15
|
+
- Add platforms:
|
16
|
+
- redhat8-64
|
17
|
+
- osx1014-64
|
18
|
+
|
19
|
+
## [1.1.22] - 2018-11-21
|
20
|
+
- Add vagrant hypervisor for debian plaforms
|
21
|
+
|
22
|
+
## [1.1.21] - 2018-11-19
|
23
|
+
- Disable getty when using docker
|
24
|
+
|
25
|
+
## [1.1.20] - 2018-11-14
|
26
|
+
- Add gnupg to docker_image_commands for debian9-64
|
27
|
+
- Add platform:
|
28
|
+
- fedora29-64
|
29
|
+
|
30
|
+
## [1.1.19] - 2018-10-18
|
31
|
+
- Add platforms:
|
32
|
+
- solaris114-32
|
33
|
+
- solaris114-64
|
34
|
+
|
35
|
+
## [1.1.18] - 2018-10-10
|
36
|
+
- Add platform:
|
37
|
+
- ubuntu1810-64
|
38
|
+
|
39
|
+
## [1.1.17] - 2018-10-05
|
40
|
+
- Add platforms:
|
41
|
+
- windows2019_core-64
|
42
|
+
- windows2019_core-6432
|
43
|
+
|
44
|
+
## [1.1.16] - 2018-09-04
|
45
|
+
- Install iproute2 on ubuntu18.04 for containers
|
46
|
+
|
47
|
+
## [1.1.15] - 2018-08-16
|
48
|
+
- Add platforms:
|
49
|
+
- panos61-64
|
50
|
+
- panos71-64
|
25
51
|
## Details
|
26
|
-
|
52
|
+
|
53
|
+
### 0.9.0 - 7 Jun, 2017 (06b6a0da)
|
27
54
|
|
28
55
|
* (GEM) update beaker-hostgenerator version to 0.9.0 (06b6a0da)
|
29
56
|
|
@@ -1747,6 +1774,6 @@ This commit updates the code to use the new constant name.
|
|
1747
1774
|
|
1748
1775
|
* README typo fixed (ba88e07e)
|
1749
1776
|
|
1750
|
-
###
|
1777
|
+
### 0.0.1 - 7 Oct, 2015 (d99251e6)
|
1751
1778
|
|
1752
1779
|
* Initial release.
|
data/README.md
CHANGED
@@ -453,6 +453,20 @@ contribute.
|
|
453
453
|
If you have questions or comments, please contact the Beaker team at the
|
454
454
|
`#puppet-dev` IRC channel on chat.freenode.org
|
455
455
|
|
456
|
+
## Make a new release
|
457
|
+
|
458
|
+
To make a new release:
|
459
|
+
|
460
|
+
* Switch to a new git branch
|
461
|
+
* Update `lib/beaker-hostgenerator/version.rb` to the new version
|
462
|
+
* export `CHANGELOG_GITHUB_TOKEN` with a GitHub access token
|
463
|
+
* run `bundle exec rake changelog`
|
464
|
+
* Review the CHANGELOG.md
|
465
|
+
* Create a PR
|
466
|
+
* Get it reviewed and merged
|
467
|
+
* Create a signed git tag with the same version number and push it
|
468
|
+
* GitHub actions will do the release
|
469
|
+
|
456
470
|
## License
|
457
471
|
|
458
472
|
`beaker-hostgenerator` is distributed under the
|
data/Rakefile
CHANGED
@@ -55,3 +55,27 @@ task 'test:spec' => ['test:spec:run', 'test:spec:minitest']
|
|
55
55
|
# global defaults
|
56
56
|
task :test => 'test:spec'
|
57
57
|
task :default => :test
|
58
|
+
|
59
|
+
begin
|
60
|
+
require 'github_changelog_generator/task'
|
61
|
+
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
|
62
|
+
config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file."
|
63
|
+
config.exclude_labels = %w[duplicate question invalid wontfix wont-fix modulesync skip-changelog]
|
64
|
+
config.user = 'voxpupuli'
|
65
|
+
config.project = 'beaker-hostgenerator'
|
66
|
+
config.future_release = Gem::Specification.load("#{config.project}.gemspec").version
|
67
|
+
end
|
68
|
+
|
69
|
+
# Workaround for https://github.com/github-changelog-generator/github-changelog-generator/issues/715
|
70
|
+
require 'rbconfig'
|
71
|
+
if RbConfig::CONFIG['host_os'] =~ /linux/
|
72
|
+
task :changelog do
|
73
|
+
puts 'Fixing line endings...'
|
74
|
+
changelog_file = File.join(__dir__, 'CHANGELOG.md')
|
75
|
+
changelog_txt = File.read(changelog_file)
|
76
|
+
new_contents = changelog_txt.gsub(/\r\n/, "\n")
|
77
|
+
File.open(changelog_file, 'w') { |file| file.puts new_contents }
|
78
|
+
end
|
79
|
+
end
|
80
|
+
rescue LoadError
|
81
|
+
end
|
@@ -23,8 +23,8 @@ eos
|
|
23
23
|
s.add_development_dependency 'minitest'
|
24
24
|
s.add_development_dependency 'rspec', '~> 3.0'
|
25
25
|
s.add_development_dependency 'rspec-its'
|
26
|
-
s.add_development_dependency 'fakefs', '
|
27
|
-
s.add_development_dependency 'rake', '~>
|
26
|
+
s.add_development_dependency 'fakefs', '>= 0.6', '< 2.0'
|
27
|
+
s.add_development_dependency 'rake', '~> 13.0'
|
28
28
|
s.add_development_dependency 'simplecov'
|
29
29
|
s.add_development_dependency 'pry', '~> 0.10'
|
30
30
|
|
@@ -13,7 +13,7 @@ module BeakerHostGenerator
|
|
13
13
|
# `include BeakerHostGenerator::Data` and then `<function>()`.
|
14
14
|
module Data
|
15
15
|
module_function
|
16
|
-
|
16
|
+
MAIN_PE_VERSION=2021.0
|
17
17
|
PE_TARBALL_SERVER="https://artifactory.delivery.puppetlabs.net/artifactory/generic_enterprise__local"
|
18
18
|
|
19
19
|
def pe_version
|
@@ -33,7 +33,7 @@ module BeakerHostGenerator
|
|
33
33
|
then "#{PE_TARBALL_SERVER}/archives/releases/#{version}/"
|
34
34
|
when /#{base_regex}-rc\d+\Z/
|
35
35
|
then "#{PE_TARBALL_SERVER}/archives/internal/%s/"
|
36
|
-
when /#{base_regex}-.*
|
36
|
+
when /#{base_regex}-.*(PEZ|pez)_.*/
|
37
37
|
then "#{PE_TARBALL_SERVER}/%s/feature/ci-ready"
|
38
38
|
when /#{base_regex}-.*/
|
39
39
|
then "#{PE_TARBALL_SERVER}/%s/ci-ready"
|
@@ -41,15 +41,12 @@ module BeakerHostGenerator
|
|
41
41
|
''
|
42
42
|
end
|
43
43
|
|
44
|
-
|
45
|
-
|
44
|
+
pe_family = $1
|
45
|
+
gem_version = Gem::Version.new(pe_family)
|
46
|
+
if(gem_version < Gem::Version.new("#{MAIN_PE_VERSION}") || version =~ /#{base_regex}-rc\d+\Z/)
|
47
|
+
pe_branch = pe_family
|
46
48
|
else
|
47
|
-
|
48
|
-
if(version =~ /.*(PEZ|pez)_.*/)
|
49
|
-
pe_branch = "master/feature"
|
50
|
-
else
|
51
|
-
pe_branch = 'master'
|
52
|
-
end
|
49
|
+
pe_branch = 'main'
|
53
50
|
end
|
54
51
|
|
55
52
|
return sprintf(source, ("#{pe_branch}" || ''))
|
@@ -83,7 +80,27 @@ module BeakerHostGenerator
|
|
83
80
|
# Hypervisor implementations will then grab specific bits of data out of
|
84
81
|
# this hash and combine them to produce the generated hosts output.
|
85
82
|
def osinfo
|
86
|
-
{
|
83
|
+
result = {}
|
84
|
+
|
85
|
+
# Fedora
|
86
|
+
(19..33).each do |release|
|
87
|
+
# 32 bit support was dropped in Fedora 31
|
88
|
+
if release < 31
|
89
|
+
result["fedora#{release}-32"] = {
|
90
|
+
:general => {
|
91
|
+
'platform' => "fedora-#{release}-i386"
|
92
|
+
}
|
93
|
+
}
|
94
|
+
end
|
95
|
+
|
96
|
+
result["fedora#{release}-64"] = {
|
97
|
+
:general => {
|
98
|
+
'platform' => "fedora-#{release}-x86_64"
|
99
|
+
}
|
100
|
+
}
|
101
|
+
end
|
102
|
+
|
103
|
+
result.merge!({
|
87
104
|
'aix53-POWER' => {
|
88
105
|
:general => {
|
89
106
|
'platform' => 'aix-5.3-power',
|
@@ -159,26 +176,17 @@ module BeakerHostGenerator
|
|
159
176
|
'centos4-32' => {
|
160
177
|
:general => {
|
161
178
|
'platform' => 'el-4-i386'
|
162
|
-
},
|
163
|
-
:vmpooler => {
|
164
|
-
'template' => 'centos-4-i386'
|
165
179
|
}
|
166
180
|
},
|
167
181
|
'centos4-64' => {
|
168
182
|
:general => {
|
169
183
|
'platform' => 'el-4-x86_64'
|
170
|
-
},
|
171
|
-
:vmpooler => {
|
172
|
-
'template' => 'centos-4-x86_64'
|
173
184
|
}
|
174
185
|
},
|
175
186
|
'centos5-32' => {
|
176
187
|
:general => {
|
177
188
|
'platform' => 'el-5-i386',
|
178
189
|
'packaging_platform' => 'el-5-i386'
|
179
|
-
},
|
180
|
-
:vmpooler => {
|
181
|
-
'template' => 'centos-5-i386'
|
182
190
|
}
|
183
191
|
},
|
184
192
|
'centos5-64' => {
|
@@ -192,18 +200,12 @@ module BeakerHostGenerator
|
|
192
200
|
'yum install -y crontabs initscripts iproute openssl sysvinit-tools tar wget which',
|
193
201
|
'sed -i -e "/mingetty/d" /etc/inittab'
|
194
202
|
]
|
195
|
-
},
|
196
|
-
:vmpooler => {
|
197
|
-
'template' => 'centos-5-x86_64'
|
198
203
|
}
|
199
204
|
},
|
200
205
|
'centos6-32' => {
|
201
206
|
:general => {
|
202
207
|
'platform' => 'el-6-i386',
|
203
208
|
'packaging_platform' => 'el-6-i386'
|
204
|
-
},
|
205
|
-
:vmpooler => {
|
206
|
-
'template' => 'centos-6-i386'
|
207
209
|
}
|
208
210
|
},
|
209
211
|
'centos6-64' => {
|
@@ -218,9 +220,6 @@ module BeakerHostGenerator
|
|
218
220
|
'yum install -y crontabs initscripts iproute openssl sysvinit-tools tar wget which',
|
219
221
|
'rm /etc/init/tty.conf'
|
220
222
|
]
|
221
|
-
},
|
222
|
-
:vmpooler => {
|
223
|
-
'template' => 'centos-6-x86_64'
|
224
223
|
}
|
225
224
|
},
|
226
225
|
'centos7-64' => {
|
@@ -233,9 +232,6 @@ module BeakerHostGenerator
|
|
233
232
|
'cp /bin/true /sbin/agetty',
|
234
233
|
'yum install -y crontabs initscripts iproute openssl sysvinit-tools tar wget which ss'
|
235
234
|
]
|
236
|
-
},
|
237
|
-
:vmpooler => {
|
238
|
-
'template' => 'centos-7-x86_64'
|
239
235
|
}
|
240
236
|
},
|
241
237
|
'centos8-64' => {
|
@@ -248,9 +244,6 @@ module BeakerHostGenerator
|
|
248
244
|
'cp /bin/true /sbin/agetty',
|
249
245
|
'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en'
|
250
246
|
]
|
251
|
-
},
|
252
|
-
:vmpooler => {
|
253
|
-
'template' => 'centos-8-x86_64'
|
254
247
|
}
|
255
248
|
},
|
256
249
|
# Deprecated
|
@@ -597,236 +590,110 @@ module BeakerHostGenerator
|
|
597
590
|
'fedora14-32' => {
|
598
591
|
:general => {
|
599
592
|
'platform' => 'fedora-14-i386'
|
600
|
-
},
|
601
|
-
:vmpooler => {
|
602
|
-
'template' => 'fedora-14-i386'
|
603
|
-
}
|
604
|
-
},
|
605
|
-
'fedora19-32' => {
|
606
|
-
:general => {
|
607
|
-
'platform' => 'fedora-19-i386'
|
608
|
-
},
|
609
|
-
:vmpooler => {
|
610
|
-
'template' => 'fedora-19-i386'
|
611
593
|
}
|
612
594
|
},
|
613
|
-
'
|
614
|
-
:general => {
|
615
|
-
'platform' => 'fedora-19-x86_64'
|
616
|
-
},
|
617
|
-
:vmpooler => {
|
618
|
-
'template' => 'fedora-19-x86_64'
|
619
|
-
}
|
620
|
-
},
|
621
|
-
'fedora20-32' => {
|
622
|
-
:general => {
|
623
|
-
'platform' => 'fedora-20-i386'
|
624
|
-
},
|
625
|
-
:vmpooler => {
|
626
|
-
'template' => 'fedora-20-i386'
|
627
|
-
}
|
628
|
-
},
|
629
|
-
'fedora20-64' => {
|
630
|
-
:general => {
|
631
|
-
'platform' => 'fedora-20-x86_64'
|
632
|
-
},
|
633
|
-
:vmpooler => {
|
634
|
-
'template' => 'fedora-20-x86_64'
|
635
|
-
}
|
636
|
-
},
|
637
|
-
'fedora21-32' => {
|
638
|
-
:general => {
|
639
|
-
'platform' => 'fedora-21-i386'
|
640
|
-
},
|
641
|
-
:vmpooler => {
|
642
|
-
'template' => 'fedora-21-i386'
|
643
|
-
}
|
644
|
-
},
|
645
|
-
'fedora21-64' => {
|
646
|
-
:general => {
|
647
|
-
'platform' => 'fedora-21-x86_64'
|
648
|
-
},
|
649
|
-
:vmpooler => {
|
650
|
-
'template' => 'fedora-21-x86_64'
|
651
|
-
}
|
652
|
-
},
|
653
|
-
'fedora22-32' => {
|
654
|
-
:general => {
|
655
|
-
'platform' => 'fedora-22-i386'
|
656
|
-
},
|
657
|
-
:vmpooler => {
|
658
|
-
'template' => 'fedora-22-i386'
|
659
|
-
}
|
660
|
-
},
|
661
|
-
'fedora22-64' => {
|
662
|
-
:general => {
|
663
|
-
'platform' => 'fedora-22-x86_64'
|
664
|
-
},
|
665
|
-
:vmpooler => {
|
666
|
-
'template' => 'fedora-22-x86_64'
|
667
|
-
}
|
668
|
-
},
|
669
|
-
'fedora23-32' => {
|
670
|
-
:general => {
|
671
|
-
'platform' => 'fedora-23-i386'
|
672
|
-
},
|
673
|
-
:vmpooler => {
|
674
|
-
'template' => 'fedora-23-i386'
|
675
|
-
}
|
676
|
-
},
|
677
|
-
'fedora23-64' => {
|
678
|
-
:general => {
|
679
|
-
'platform' => 'fedora-23-x86_64'
|
680
|
-
},
|
681
|
-
:vmpooler => {
|
682
|
-
'template' => 'fedora-23-x86_64'
|
683
|
-
}
|
684
|
-
},
|
685
|
-
'fedora24-32' => {
|
686
|
-
:general => {
|
687
|
-
'platform' => 'fedora-24-i386',
|
688
|
-
'packaging_platform' => 'fedora-24-i386'
|
689
|
-
},
|
690
|
-
:vmpooler => {
|
691
|
-
'template' => 'fedora-24-i386'
|
692
|
-
}
|
693
|
-
},
|
694
|
-
'fedora24-64' => {
|
695
|
-
:general => {
|
696
|
-
'platform' => 'fedora-24-x86_64',
|
697
|
-
'packaging_platform' => 'fedora-24-x86_64'
|
698
|
-
},
|
699
|
-
:vmpooler => {
|
700
|
-
'template' => 'fedora-24-x86_64'
|
701
|
-
}
|
702
|
-
},
|
703
|
-
'fedora25-32' => {
|
704
|
-
:general => {
|
705
|
-
'platform' => 'fedora-25-i386',
|
706
|
-
'packaging_platform' => 'fedora-25-i386'
|
707
|
-
},
|
708
|
-
:vmpooler => {
|
709
|
-
'template' => 'fedora-25-i386'
|
710
|
-
}
|
711
|
-
},
|
712
|
-
'fedora25-64' => {
|
595
|
+
'huaweios6-POWER' => {
|
713
596
|
:general => {
|
714
|
-
'platform'
|
715
|
-
'packaging_platform' => 'fedora-25-x86_64'
|
597
|
+
'platform' => 'huaweios-6-powerpc'
|
716
598
|
},
|
717
|
-
:
|
718
|
-
'template' => '
|
599
|
+
:abs => {
|
600
|
+
'template' => 'huaweios-6-powerpc'
|
719
601
|
}
|
720
602
|
},
|
721
|
-
'
|
603
|
+
'panos61-64' => {
|
722
604
|
:general => {
|
723
|
-
'platform'
|
724
|
-
'packaging_platform' => 'fedora-26-x86_64'
|
605
|
+
'platform' => 'palo-alto-6.1.0-x86_64'
|
725
606
|
},
|
726
607
|
:vmpooler => {
|
727
|
-
'template' => '
|
608
|
+
'template' => 'palo-alto-6.1.0-x86_64'
|
728
609
|
}
|
729
610
|
},
|
730
|
-
'
|
611
|
+
'panos71-64' => {
|
731
612
|
:general => {
|
732
|
-
'platform'
|
733
|
-
'packaging_platform' => 'fedora-27-x86_64'
|
613
|
+
'platform' => 'palo-alto-7.1.0-x86_64'
|
734
614
|
},
|
735
615
|
:vmpooler => {
|
736
|
-
'template' => '
|
616
|
+
'template' => 'palo-alto-7.1.0-x86_64'
|
737
617
|
}
|
738
618
|
},
|
739
|
-
'
|
619
|
+
'panos81-64' => {
|
740
620
|
:general => {
|
741
|
-
'platform'
|
742
|
-
'packaging_platform' => 'fedora-28-x86_64'
|
621
|
+
'platform' => 'palo-alto-8.1.0-x86_64'
|
743
622
|
},
|
744
623
|
:vmpooler => {
|
745
|
-
'template' => '
|
624
|
+
'template' => 'palo-alto-8.1.0-x86_64'
|
746
625
|
}
|
747
626
|
},
|
748
|
-
'
|
627
|
+
'opensuse11-32' => {
|
749
628
|
:general => {
|
750
|
-
'platform'
|
751
|
-
'packaging_platform' => 'fedora-29-x86_64'
|
629
|
+
'platform' => 'opensuse-11-i386'
|
752
630
|
},
|
753
631
|
:vmpooler => {
|
754
|
-
'template' => '
|
632
|
+
'template' => 'opensuse-11-i386'
|
755
633
|
}
|
756
634
|
},
|
757
|
-
'
|
635
|
+
'opensuse11-64' => {
|
758
636
|
:general => {
|
759
|
-
'platform'
|
760
|
-
'packaging_platform' => 'fedora-30-x86_64'
|
637
|
+
'platform' => 'opensuse-11-x86_64'
|
761
638
|
},
|
762
639
|
:vmpooler => {
|
763
|
-
'template' => '
|
640
|
+
'template' => 'opensuse-11-x86_64'
|
764
641
|
}
|
765
642
|
},
|
766
|
-
'
|
643
|
+
'opensuse15-32' => {
|
767
644
|
:general => {
|
768
|
-
'platform'
|
769
|
-
'packaging_platform' => 'fedora-31-x86_64'
|
645
|
+
'platform' => 'opensuse-15-i386'
|
770
646
|
},
|
771
|
-
:
|
772
|
-
'
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
:general => {
|
777
|
-
'platform' => 'fedora-32-x86_64',
|
778
|
-
'packaging_platform' => 'fedora-32-x86_64'
|
647
|
+
:docker => {
|
648
|
+
'docker_image_commands' => [
|
649
|
+
'cp /bin/true /sbin/agetty',
|
650
|
+
'zypper install -y cron iproute2 tar wget which'
|
651
|
+
]
|
779
652
|
},
|
780
653
|
:vmpooler => {
|
781
|
-
'template' => '
|
654
|
+
'template' => 'opensuse-15-i386'
|
782
655
|
}
|
783
656
|
},
|
784
|
-
'
|
657
|
+
'opensuse15-64' => {
|
785
658
|
:general => {
|
786
|
-
'platform' => '
|
659
|
+
'platform' => 'opensuse-15-x86_64'
|
787
660
|
},
|
788
|
-
:
|
789
|
-
'
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
:general => {
|
794
|
-
'platform' => 'palo-alto-6.1.0-x86_64'
|
661
|
+
:docker => {
|
662
|
+
'docker_image_commands' => [
|
663
|
+
'cp /bin/true /sbin/agetty',
|
664
|
+
'zypper install -y cron iproute2 tar wget which'
|
665
|
+
]
|
795
666
|
},
|
796
667
|
:vmpooler => {
|
797
|
-
'template' => '
|
668
|
+
'template' => 'opensuse-15-x86_64'
|
798
669
|
}
|
799
670
|
},
|
800
|
-
'
|
671
|
+
'opensuse42-32' => {
|
801
672
|
:general => {
|
802
|
-
'platform' => '
|
673
|
+
'platform' => 'opensuse-42-i386'
|
803
674
|
},
|
804
|
-
:
|
805
|
-
'
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
:general => {
|
810
|
-
'platform' => 'palo-alto-8.1.0-x86_64'
|
675
|
+
:docker => {
|
676
|
+
'docker_image_commands' => [
|
677
|
+
'cp /bin/true /sbin/agetty',
|
678
|
+
'zypper install -y cron iproute2 tar wget which'
|
679
|
+
]
|
811
680
|
},
|
812
681
|
:vmpooler => {
|
813
|
-
'template' => '
|
682
|
+
'template' => 'opensuse-42-i386'
|
814
683
|
}
|
815
684
|
},
|
816
|
-
'
|
685
|
+
'opensuse42-64' => {
|
817
686
|
:general => {
|
818
|
-
'platform' => 'opensuse-
|
687
|
+
'platform' => 'opensuse-42-x86_64'
|
819
688
|
},
|
820
|
-
:
|
821
|
-
'
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
:general => {
|
826
|
-
'platform' => 'opensuse-11-x86_64'
|
689
|
+
:docker => {
|
690
|
+
'docker_image_commands' => [
|
691
|
+
'cp /bin/true /sbin/agetty',
|
692
|
+
'zypper install -y cron iproute2 tar wget which'
|
693
|
+
]
|
827
694
|
},
|
828
695
|
:vmpooler => {
|
829
|
-
'template' => 'opensuse-
|
696
|
+
'template' => 'opensuse-42-x86_64'
|
830
697
|
}
|
831
698
|
},
|
832
699
|
'oracle5-32' => {
|
@@ -936,6 +803,15 @@ module BeakerHostGenerator
|
|
936
803
|
'template' => 'osx-1015-x86_64'
|
937
804
|
}
|
938
805
|
},
|
806
|
+
'osx11-64' => {
|
807
|
+
:general => {
|
808
|
+
'platform' => 'osx-11-x86_64',
|
809
|
+
'packaging_platform' => 'osx-11-x86_64'
|
810
|
+
},
|
811
|
+
:vmpooler => {
|
812
|
+
'template' => 'macos-112-x86_64'
|
813
|
+
}
|
814
|
+
},
|
939
815
|
'redhat4-32' => {
|
940
816
|
:general => {
|
941
817
|
'platform' => 'el-4-i386'
|
@@ -1048,6 +924,18 @@ module BeakerHostGenerator
|
|
1048
924
|
'template' => 'redhat-8-x86_64'
|
1049
925
|
}
|
1050
926
|
},
|
927
|
+
'redhat8-AARCH64' => {
|
928
|
+
:general => {
|
929
|
+
'platform' => 'el-8-aarch64',
|
930
|
+
'packaging_platform' => 'el-8-aarch64'
|
931
|
+
},
|
932
|
+
:abs => {
|
933
|
+
'template' => 'redhat-8-arm64'
|
934
|
+
},
|
935
|
+
:vmpooler => {
|
936
|
+
'template' => 'redhat-8-x86_64'
|
937
|
+
}
|
938
|
+
},
|
1051
939
|
'scientific5-32' => {
|
1052
940
|
:general => {
|
1053
941
|
'platform' => 'el-5-i386',
|
@@ -1457,6 +1345,15 @@ module BeakerHostGenerator
|
|
1457
1345
|
'template' => 'ubuntu-2004-x86_64'
|
1458
1346
|
}
|
1459
1347
|
},
|
1348
|
+
'ubuntu2004-AARCH64' => {
|
1349
|
+
:general => {
|
1350
|
+
'platform' => 'ubuntu-20.04-aarch64',
|
1351
|
+
'packaging_platform' => 'ubuntu-20.04-aarch64'
|
1352
|
+
},
|
1353
|
+
:abs => {
|
1354
|
+
'template' => 'ubuntu-2004-arm64'
|
1355
|
+
},
|
1356
|
+
},
|
1460
1357
|
'vro6-64' => {
|
1461
1358
|
:general => {
|
1462
1359
|
'platform' => 'sles-11-x86_64',
|
@@ -1928,7 +1825,9 @@ module BeakerHostGenerator
|
|
1928
1825
|
'template' => 'win-10-1809-x86_64'
|
1929
1826
|
}
|
1930
1827
|
}
|
1931
|
-
}
|
1828
|
+
})
|
1829
|
+
|
1830
|
+
result
|
1932
1831
|
end
|
1933
1832
|
|
1934
1833
|
def osinfo_bhgv1
|