test-kitchen 2.5.1 → 2.5.2
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/lib/kitchen/provisioner/chef_base.rb +9 -9
- data/lib/kitchen/version.rb +1 -1
- data/test-kitchen.gemspec +1 -1
- metadata +13 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f64adcadcfffbb97c3c6cf5a53c70b592f913fa047a8d0eeb0005cd9465c3ba0
|
|
4
|
+
data.tar.gz: d94b2819e5f73b83beba6016b036d99c1cd02f81dd6c9596b1d46f146311f618
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f1988e66f7e15097d664e414579f9b2520ebea535bdfdc80ab159cfb2306c1a783559750d579390436b104aca0e8af2ee8d1f160a1119accc5c15dfae97e068
|
|
7
|
+
data.tar.gz: d8c9cd609f9257f934c7e2070b6b1fe95093295d0dfd99d205fdc93575892732b543a893753006184a0b66bf4811fe0f87981229e45966004504b9677ff64358
|
|
@@ -154,7 +154,7 @@ module Kitchen
|
|
|
154
154
|
|
|
155
155
|
# New Usage #
|
|
156
156
|
provisioner:
|
|
157
|
-
product_name: <chef or
|
|
157
|
+
product_name: <chef or chef-workstation>
|
|
158
158
|
install_strategy: skip
|
|
159
159
|
MSG
|
|
160
160
|
when provisioner[:require_chef_omnibus].to_s.match(/\d/)
|
|
@@ -167,7 +167,7 @@ module Kitchen
|
|
|
167
167
|
|
|
168
168
|
# New Usage #
|
|
169
169
|
provisioner:
|
|
170
|
-
product_name: <chef or
|
|
170
|
+
product_name: <chef or chef-workstation>
|
|
171
171
|
product_version: #{provisioner[:require_chef_omnibus]}
|
|
172
172
|
MSG
|
|
173
173
|
when provisioner[:require_chef_omnibus] == "latest"
|
|
@@ -180,7 +180,7 @@ module Kitchen
|
|
|
180
180
|
|
|
181
181
|
# New Usage #
|
|
182
182
|
provisioner:
|
|
183
|
-
product_name: <chef or
|
|
183
|
+
product_name: <chef or chef-workstation>
|
|
184
184
|
install_strategy: always
|
|
185
185
|
MSG
|
|
186
186
|
end
|
|
@@ -200,11 +200,11 @@ module Kitchen
|
|
|
200
200
|
|
|
201
201
|
# Deprecated Example #
|
|
202
202
|
provisioner:
|
|
203
|
-
chef_omnibus_install_options: -P
|
|
203
|
+
chef_omnibus_install_options: -P chef-workstation -c current
|
|
204
204
|
|
|
205
205
|
# New Usage #
|
|
206
206
|
provisioner:
|
|
207
|
-
product_name:
|
|
207
|
+
product_name: chef-workstation
|
|
208
208
|
channel: current
|
|
209
209
|
MSG
|
|
210
210
|
|
|
@@ -217,7 +217,7 @@ module Kitchen
|
|
|
217
217
|
|
|
218
218
|
# New Usage #
|
|
219
219
|
provisioner:
|
|
220
|
-
product_name: <chef or
|
|
220
|
+
product_name: <chef or chef-workstation>
|
|
221
221
|
download_url: http://direct-download-url
|
|
222
222
|
MSG
|
|
223
223
|
|
|
@@ -226,9 +226,9 @@ module Kitchen
|
|
|
226
226
|
fully managed by using attribute settings.
|
|
227
227
|
MSG
|
|
228
228
|
|
|
229
|
-
# Reads the local Chef::Config object (if present).
|
|
230
|
-
# we want to start bring Chef config and
|
|
231
|
-
# together.
|
|
229
|
+
# Reads the local Chef::Config object (if present). We do this because
|
|
230
|
+
# we want to start bring Chef config and Chef Workstation config closer
|
|
231
|
+
# together. For example, we want to configure proxy settings in 1
|
|
232
232
|
# location instead of 3 configuration files.
|
|
233
233
|
#
|
|
234
234
|
# @param config [Hash] initial provided configuration
|
data/lib/kitchen/version.rb
CHANGED
data/test-kitchen.gemspec
CHANGED
|
@@ -29,7 +29,7 @@ Gem::Specification.new do |gem|
|
|
|
29
29
|
gem.add_dependency "net-ssh-gateway", ">= 1.2", "< 3.0" # pinning until we can confirm 3+ works
|
|
30
30
|
gem.add_dependency "ed25519", "~> 1.2" # ed25519 ssh key support
|
|
31
31
|
gem.add_dependency "bcrypt_pbkdf", "~> 1.0" # ed25519 ssh key support
|
|
32
|
-
gem.add_dependency "thor", "
|
|
32
|
+
gem.add_dependency "thor", ">= 0.19", "< 2.0"
|
|
33
33
|
gem.add_dependency "mixlib-install", "~> 3.6"
|
|
34
34
|
gem.add_dependency "winrm", "~> 2.0"
|
|
35
35
|
gem.add_dependency "winrm-elevated", "~> 1.0"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: test-kitchen
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.5.
|
|
4
|
+
version: 2.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fletcher Nichol
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-06-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mixlib-shellout
|
|
@@ -122,16 +122,22 @@ dependencies:
|
|
|
122
122
|
name: thor
|
|
123
123
|
requirement: !ruby/object:Gem::Requirement
|
|
124
124
|
requirements:
|
|
125
|
-
- - "
|
|
125
|
+
- - ">="
|
|
126
126
|
- !ruby/object:Gem::Version
|
|
127
127
|
version: '0.19'
|
|
128
|
+
- - "<"
|
|
129
|
+
- !ruby/object:Gem::Version
|
|
130
|
+
version: '2.0'
|
|
128
131
|
type: :runtime
|
|
129
132
|
prerelease: false
|
|
130
133
|
version_requirements: !ruby/object:Gem::Requirement
|
|
131
134
|
requirements:
|
|
132
|
-
- - "
|
|
135
|
+
- - ">="
|
|
133
136
|
- !ruby/object:Gem::Version
|
|
134
137
|
version: '0.19'
|
|
138
|
+
- - "<"
|
|
139
|
+
- !ruby/object:Gem::Version
|
|
140
|
+
version: '2.0'
|
|
135
141
|
- !ruby/object:Gem::Dependency
|
|
136
142
|
name: mixlib-install
|
|
137
143
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -478,7 +484,7 @@ homepage: https://kitchen.ci/
|
|
|
478
484
|
licenses:
|
|
479
485
|
- Apache-2.0
|
|
480
486
|
metadata: {}
|
|
481
|
-
post_install_message:
|
|
487
|
+
post_install_message:
|
|
482
488
|
rdoc_options: []
|
|
483
489
|
require_paths:
|
|
484
490
|
- lib
|
|
@@ -494,7 +500,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
494
500
|
version: '0'
|
|
495
501
|
requirements: []
|
|
496
502
|
rubygems_version: 3.1.2
|
|
497
|
-
signing_key:
|
|
503
|
+
signing_key:
|
|
498
504
|
specification_version: 4
|
|
499
505
|
summary: Test Kitchen is an integration tool for developing and testing infrastructure
|
|
500
506
|
code and software on isolated target platforms.
|