beaker-docker 0.6.0 → 0.7.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 +5 -5
- data/README.md +11 -0
- data/lib/beaker-docker/version.rb +1 -1
- data/lib/beaker/hypervisor/docker.rb +1 -0
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 861122c5034db5ced0eff3c80985dc76b22e1cd2fdf5bb8adaec166273c0d2c1
|
|
4
|
+
data.tar.gz: 6859e69fce6351716083d866b413bfc293be22a377dcf4f65c67d56f9e61732f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de860c99c3586574c9593a2e58e314d917674a8d5314b6f54395dcb59eb6563d0b3b830ae9d5dd21c307a51a1fbd73a0faf4a4438881f9a94a3f8f55109bfa6e
|
|
7
|
+
data.tar.gz: c9f73baba29ca208f6d04a6a599e1f069aa8bf79ea646b30c48f27249e7d29127738c217d25f1ae4a8d17d8a75890a4ccb44fafa67c341bb8b258191dcb1471f
|
data/README.md
CHANGED
|
@@ -42,3 +42,14 @@ bundle exec rake test:acceptance
|
|
|
42
42
|
# Contributing
|
|
43
43
|
|
|
44
44
|
Please refer to puppetlabs/beaker's [contributing](https://github.com/puppetlabs/beaker/blob/master/CONTRIBUTING.md) guide.
|
|
45
|
+
|
|
46
|
+
# Releasing
|
|
47
|
+
|
|
48
|
+
To release new versions of beaker-docker, please use this [jenkins job](https://cinext-jenkinsmaster-sre-prod-1.delivery.puppetlabs.net/view/all/job/qe_beaker-docker_init-multijob_master/). This job
|
|
49
|
+
lives on Puppet-internal infrastructure, so you'll need to be a part of the Puppet org to do this.
|
|
50
|
+
|
|
51
|
+
To run the job, click on `Build with Parameters` in the menu on the left. Make
|
|
52
|
+
sure you check the box next to `PUBLIC` and enter the appropriate version. The
|
|
53
|
+
version should adhere to [semantic version standards](https://semver.org).
|
|
54
|
+
When in doubt, consult the [maintainers of Beaker](https://github.com/puppetlabs/beaker/blob/master/CODEOWNERS)
|
|
55
|
+
for guidance.
|
|
@@ -224,6 +224,7 @@ module Beaker
|
|
|
224
224
|
:password => root_password,
|
|
225
225
|
:port => port,
|
|
226
226
|
:forward_agent => forward_ssh_agent,
|
|
227
|
+
:auth_methods => ['password', 'publickey', 'hostbased', 'keyboard-interactive']
|
|
227
228
|
}
|
|
228
229
|
|
|
229
230
|
@logger.debug("node available as ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@#{ip} -p #{port}")
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beaker-docker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rishi Javia, Kevin Imber, Tony Vu
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-01-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -163,8 +163,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
163
163
|
- !ruby/object:Gem::Version
|
|
164
164
|
version: '0'
|
|
165
165
|
requirements: []
|
|
166
|
-
|
|
167
|
-
rubygems_version: 2.5.1
|
|
166
|
+
rubygems_version: 3.0.6
|
|
168
167
|
signing_key:
|
|
169
168
|
specification_version: 4
|
|
170
169
|
summary: Beaker DSL Extension Helpers!
|