beaker-hostgenerator 1.1.14 → 1.1.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/beaker-hostgenerator.gemspec +0 -1
- data/lib/beaker-hostgenerator/data.rb +24 -0
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee3d15a6467cea6cdc5f3da1257fbccca5f9f4d8
|
4
|
+
data.tar.gz: ccd94241f1ee9c63285e9f68c5f7d90102122ae3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76a583df805851a85840b704053d3a20007e10e0ce59455bd1c85630dab654f1693c4ab898ea3c51e5ee8f559d8bb27423a55ed3a646fae061d9c215dfb5749c
|
7
|
+
data.tar.gz: 95aa84ef0b51e55488642d6a413eb123b03e33d72ffc9640f88c6516713981814510f078903a4c171ab4e2dbe1f31c5db372117bb879f6238474b35dbbea537d
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
This project makes a strong effort to adhere to [Semantic
|
5
5
|
Versioning](http://semver.org).
|
6
6
|
|
7
|
+
## [1.1.15] - 2018-08-16
|
8
|
+
- Add platforms:
|
9
|
+
- panos61-64
|
10
|
+
- panos71-64
|
11
|
+
- panos81-64
|
7
12
|
|
8
13
|
## [1.1.14] - 2018-07-13
|
9
14
|
- Add docker image commands for Ubuntu 18.04
|
@@ -13,7 +13,6 @@ The beaker-hostgenerator tool will take a Beaker SUT (System Under Test) spec as
|
|
13
13
|
its first positional argument and use that to generate a Beaker host
|
14
14
|
configuration file.
|
15
15
|
eos
|
16
|
-
s.description = %q{For use for the Beaker acceptance testing tool}
|
17
16
|
s.license = 'Apache2'
|
18
17
|
|
19
18
|
s.files = `git ls-files`.split("\n").reject { |f| f.match(/^(test|spec)/) }
|
@@ -507,6 +507,30 @@ module BeakerHostGenerator
|
|
507
507
|
'template' => 'huaweios-6-powerpc'
|
508
508
|
}
|
509
509
|
},
|
510
|
+
'panos61-64' => {
|
511
|
+
:general => {
|
512
|
+
'platform' => 'palo-alto-6.1.0-x86_64'
|
513
|
+
},
|
514
|
+
:vmpooler => {
|
515
|
+
'template' => 'palo-alto-6.1.0-x86_64'
|
516
|
+
}
|
517
|
+
},
|
518
|
+
'panos71-64' => {
|
519
|
+
:general => {
|
520
|
+
'platform' => 'palo-alto-7.1.0-x86_64'
|
521
|
+
},
|
522
|
+
:vmpooler => {
|
523
|
+
'template' => 'palo-alto-7.1.0-x86_64'
|
524
|
+
}
|
525
|
+
},
|
526
|
+
'panos81-64' => {
|
527
|
+
:general => {
|
528
|
+
'platform' => 'palo-alto-8.1.0-x86_64'
|
529
|
+
},
|
530
|
+
:vmpooler => {
|
531
|
+
'template' => 'palo-alto-8.1.0-x86_64'
|
532
|
+
}
|
533
|
+
},
|
510
534
|
'opensuse11-32' => {
|
511
535
|
:general => {
|
512
536
|
'platform' => 'opensuse-11-i386'
|
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: 1.1.
|
4
|
+
version: 1.1.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Branan Purvine-Riley
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2018-
|
13
|
+
date: 2018-08-16 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|
@@ -186,7 +186,10 @@ dependencies:
|
|
186
186
|
- - "~>"
|
187
187
|
- !ruby/object:Gem::Version
|
188
188
|
version: 0.0.0
|
189
|
-
description:
|
189
|
+
description: |
|
190
|
+
The beaker-hostgenerator tool will take a Beaker SUT (System Under Test) spec as
|
191
|
+
its first positional argument and use that to generate a Beaker host
|
192
|
+
configuration file.
|
190
193
|
email:
|
191
194
|
- qe-team@puppet.com
|
192
195
|
executables:
|