chef-dk 3.3.23 → 3.4.38
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/Gemfile +7 -7
- data/Gemfile.lock +91 -82
- data/lib/chef-dk/cli.rb +13 -13
- data/lib/chef-dk/command/base.rb +8 -8
- data/lib/chef-dk/command/clean_policy_cookbooks.rb +10 -10
- data/lib/chef-dk/command/clean_policy_revisions.rb +9 -9
- data/lib/chef-dk/command/delete_policy.rb +9 -9
- data/lib/chef-dk/command/delete_policy_group.rb +9 -9
- data/lib/chef-dk/command/diff.rb +35 -35
- data/lib/chef-dk/command/export.rb +11 -11
- data/lib/chef-dk/command/generate.rb +3 -3
- data/lib/chef-dk/command/generator_commands.rb +24 -24
- data/lib/chef-dk/command/generator_commands/build_cookbook.rb +3 -3
- data/lib/chef-dk/command/generator_commands/chef_exts/generator_desc_resource.rb +1 -1
- data/lib/chef-dk/command/generator_commands/cookbook.rb +3 -3
- data/lib/chef-dk/command/generator_commands/cookbook_file.rb +3 -3
- data/lib/chef-dk/command/generator_commands/generator_generator.rb +5 -5
- data/lib/chef-dk/command/generator_commands/template.rb +3 -3
- data/lib/chef-dk/command/install.rb +11 -11
- data/lib/chef-dk/command/provision.rb +32 -32
- data/lib/chef-dk/command/push.rb +9 -9
- data/lib/chef-dk/command/push_archive.rb +9 -9
- data/lib/chef-dk/command/shell_init.rb +21 -21
- data/lib/chef-dk/command/show_policy.rb +11 -11
- data/lib/chef-dk/command/undelete.rb +17 -17
- data/lib/chef-dk/command/update.rb +12 -12
- data/lib/chef-dk/command/verify.rb +63 -63
- data/lib/chef-dk/component_test.rb +3 -3
- data/lib/chef-dk/exceptions.rb +5 -5
- data/lib/chef-dk/generator.rb +61 -61
- data/lib/chef-dk/helpers.rb +1 -1
- data/lib/chef-dk/policyfile/cookbook_location_specification.rb +1 -1
- data/lib/chef-dk/policyfile/cookbook_locks.rb +1 -1
- data/lib/chef-dk/policyfile/git_lock_fetcher.rb +7 -7
- data/lib/chef-dk/policyfile/policyfile_location_specification.rb +1 -1
- data/lib/chef-dk/policyfile/uploader.rb +4 -4
- data/lib/chef-dk/policyfile_compiler.rb +1 -1
- data/lib/chef-dk/policyfile_services/export_repo.rb +49 -49
- data/lib/chef-dk/policyfile_services/install.rb +3 -3
- data/lib/chef-dk/policyfile_services/push_archive.rb +5 -5
- data/lib/chef-dk/policyfile_services/rm_policy_group.rb +1 -1
- data/lib/chef-dk/policyfile_services/update_attributes.rb +2 -2
- data/lib/chef-dk/service_exception_inspectors/http.rb +9 -9
- data/lib/chef-dk/skeletons/code_generator/recipes/recipe.rb +6 -6
- data/lib/chef-dk/version.rb +1 -1
- data/lib/kitchen/provisioner/policyfile_zero.rb +9 -9
- data/omnibus_overrides.rb +1 -1
- data/spec/spec_helper.rb +3 -3
- data/spec/unit/cli_spec.rb +9 -9
- data/spec/unit/command/base_spec.rb +25 -25
- data/spec/unit/command/clean_policy_cookbooks_spec.rb +6 -6
- data/spec/unit/command/clean_policy_revisions_spec.rb +6 -6
- data/spec/unit/command/delete_policy_group_spec.rb +6 -6
- data/spec/unit/command/delete_policy_spec.rb +6 -6
- data/spec/unit/command/export_spec.rb +10 -10
- data/spec/unit/command/generate_spec.rb +5 -5
- data/spec/unit/command/generator_commands/build_cookbook_spec.rb +15 -15
- data/spec/unit/command/generator_commands/cookbook_spec.rb +174 -174
- data/spec/unit/command/generator_commands/generator_generator_spec.rb +5 -5
- data/spec/unit/command/generator_commands/policyfile_spec.rb +15 -15
- data/spec/unit/command/generator_commands/repo_spec.rb +16 -16
- data/spec/unit/command/install_spec.rb +15 -15
- data/spec/unit/command/provision_spec.rb +25 -25
- data/spec/unit/command/push_spec.rb +12 -12
- data/spec/unit/command/shell_init_spec.rb +59 -59
- data/spec/unit/command/show_policy_spec.rb +6 -6
- data/spec/unit/command/undelete_spec.rb +6 -6
- data/spec/unit/command/update_spec.rb +30 -30
- data/spec/unit/fixtures/command/cli_test_command.rb +1 -1
- data/spec/unit/policyfile/chef_server_lock_fetcher_spec.rb +41 -41
- data/spec/unit/policyfile/comparison_base_spec.rb +38 -38
- data/spec/unit/policyfile/cookbook_locks_spec.rb +3 -3
- data/spec/unit/policyfile/differ_spec.rb +361 -361
- data/spec/unit/policyfile/git_lock_fetcher_spec.rb +34 -34
- data/spec/unit/policyfile/included_policies_cookbook_source_spec.rb +6 -6
- data/spec/unit/policyfile/local_lock_fetcher_spec.rb +35 -35
- data/spec/unit/policyfile/lock_applier_spec.rb +6 -6
- data/spec/unit/policyfile/reports/upload_spec.rb +5 -5
- data/spec/unit/policyfile/uploader_spec.rb +27 -27
- data/spec/unit/policyfile_demands_spec.rb +84 -84
- data/spec/unit/policyfile_evaluation_spec.rb +14 -14
- data/spec/unit/policyfile_includes_spec.rb +1 -1
- data/spec/unit/policyfile_install_with_includes_spec.rb +3 -3
- data/spec/unit/policyfile_lock_build_spec.rb +58 -58
- data/spec/unit/policyfile_lock_validation_spec.rb +108 -108
- data/spec/unit/policyfile_services/clean_policies_spec.rb +12 -12
- data/spec/unit/policyfile_services/clean_policy_cookbooks_spec.rb +9 -9
- data/spec/unit/policyfile_services/export_repo_spec.rb +64 -64
- data/spec/unit/policyfile_services/install_spec.rb +4 -4
- data/spec/unit/policyfile_services/push_archive_spec.rb +41 -41
- data/spec/unit/policyfile_services/push_spec.rb +38 -38
- data/spec/unit/policyfile_services/rm_policy_group_spec.rb +12 -12
- data/spec/unit/policyfile_services/rm_policy_spec.rb +6 -6
- data/spec/unit/policyfile_services/show_policy_spec.rb +161 -161
- data/spec/unit/policyfile_services/undelete_spec.rb +13 -13
- data/spec/unit/policyfile_services/update_attributes_spec.rb +6 -6
- data/spec/unit/policyfile_services/update_spec.rb +7 -7
- data/spec/unit/service_exception_inspectors/http_spec.rb +12 -12
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 468934af3d8014eb41d7e49ab9c88f7474c8981ff52bd5b2d098642276879cc5
|
|
4
|
+
data.tar.gz: f9eeeb95e01847f0e4163afabba6c6d76f2e5e96646f5efcfd0316582f300504
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 56ccbe39d4bb35c4a0f16fe28b73dc6f84d9fb39e9cfbd6b6bd1626932c8d8fa274d3c3d6de82c035ad6b72c687bcb176bd8ce6f491df734817a45be9548e661
|
|
7
|
+
data.tar.gz: 9d12bd4a589d5b4e4c4d7c1fc7c89352fc194d8e6b84671881a38db54522cf3e687616cf2cf529180121001c62ca589927dd1cafccf311975be26f28b4175f05
|
data/Gemfile
CHANGED
|
@@ -52,22 +52,22 @@ group(:omnibus_package) do
|
|
|
52
52
|
# gems to Rubygems now, so letting this float on latest should always give us the latest
|
|
53
53
|
# stable release. May have to re-pin around major version bumping time, or during patch
|
|
54
54
|
# fixes.
|
|
55
|
-
gem "chef", "= 14.
|
|
55
|
+
gem "chef", "= 14.6.47"
|
|
56
56
|
gem "cheffish", ">= 14.0.1"
|
|
57
57
|
gem "chefspec", ">= 7.3.0"
|
|
58
|
-
gem "fauxhai", ">= 6.
|
|
59
|
-
gem "inspec", ">= 2.
|
|
58
|
+
gem "fauxhai", ">= 6.7"
|
|
59
|
+
gem "inspec", ">= 2.3"
|
|
60
60
|
gem "kitchen-azurerm", ">= 0.14"
|
|
61
|
-
gem "kitchen-ec2", ">= 2.
|
|
61
|
+
gem "kitchen-ec2", ">= 2.3"
|
|
62
62
|
gem "kitchen-digitalocean", ">= 0.10.0"
|
|
63
63
|
gem "kitchen-dokken", ">= 2.6.7"
|
|
64
|
-
gem "kitchen-google", ">=
|
|
64
|
+
gem "kitchen-google", ">= 2.0.0"
|
|
65
65
|
gem "kitchen-hyperv", ">= 0.5.1"
|
|
66
|
-
gem "kitchen-inspec", ">= 0.
|
|
66
|
+
gem "kitchen-inspec", ">= 0.24"
|
|
67
67
|
gem "kitchen-vagrant", ">= 1.3.2"
|
|
68
68
|
gem "knife-acl", ">= 1.0.3"
|
|
69
69
|
gem "knife-ec2", ">= 0.19.10"
|
|
70
|
-
gem "knife-google", ">= 3.3.
|
|
70
|
+
gem "knife-google", ">= 3.3.3"
|
|
71
71
|
gem "knife-tidy", ">= 1.2.0"
|
|
72
72
|
gem "knife-windows", ">= 1.9.1"
|
|
73
73
|
gem "knife-opc", ">= 0.4.0"
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
chef-dk (3.
|
|
4
|
+
chef-dk (3.4.38)
|
|
5
5
|
addressable (>= 2.3.5, < 2.6)
|
|
6
6
|
chef (~> 14.0)
|
|
7
7
|
chef-provisioning (~> 2.0)
|
|
@@ -30,13 +30,13 @@ GEM
|
|
|
30
30
|
mixlib-shellout (~> 2.0)
|
|
31
31
|
artifactory (2.8.2)
|
|
32
32
|
ast (2.4.0)
|
|
33
|
-
aws-sdk (2.11.
|
|
34
|
-
aws-sdk-resources (= 2.11.
|
|
35
|
-
aws-sdk-core (2.11.
|
|
33
|
+
aws-sdk (2.11.158)
|
|
34
|
+
aws-sdk-resources (= 2.11.158)
|
|
35
|
+
aws-sdk-core (2.11.158)
|
|
36
36
|
aws-sigv4 (~> 1.0)
|
|
37
37
|
jmespath (~> 1.0)
|
|
38
|
-
aws-sdk-resources (2.11.
|
|
39
|
-
aws-sdk-core (= 2.11.
|
|
38
|
+
aws-sdk-resources (2.11.158)
|
|
39
|
+
aws-sdk-core (= 2.11.158)
|
|
40
40
|
aws-sigv4 (1.0.3)
|
|
41
41
|
axiom-types (0.1.1)
|
|
42
42
|
descendants_tracker (~> 0.0.4)
|
|
@@ -44,9 +44,11 @@ GEM
|
|
|
44
44
|
thread_safe (~> 0.3, >= 0.3.1)
|
|
45
45
|
azure_graph_rbac (0.17.0)
|
|
46
46
|
ms_rest_azure (~> 0.11.0)
|
|
47
|
-
|
|
47
|
+
azure_mgmt_key_vault (0.17.2)
|
|
48
48
|
ms_rest_azure (~> 0.11.0)
|
|
49
|
-
|
|
49
|
+
azure_mgmt_network (0.17.4)
|
|
50
|
+
ms_rest_azure (~> 0.11.0)
|
|
51
|
+
azure_mgmt_resources (0.17.2)
|
|
50
52
|
ms_rest_azure (~> 0.11.0)
|
|
51
53
|
backports (3.11.4)
|
|
52
54
|
berkshelf (7.0.6)
|
|
@@ -66,10 +68,10 @@ GEM
|
|
|
66
68
|
debug_inspector (>= 0.0.1)
|
|
67
69
|
builder (3.2.3)
|
|
68
70
|
byebug (10.0.2)
|
|
69
|
-
chef (14.
|
|
71
|
+
chef (14.6.47)
|
|
70
72
|
addressable
|
|
71
73
|
bundler (>= 1.10)
|
|
72
|
-
chef-config (= 14.
|
|
74
|
+
chef-config (= 14.6.47)
|
|
73
75
|
chef-zero (>= 13.0)
|
|
74
76
|
diff-lcs (~> 1.2, >= 1.2.4)
|
|
75
77
|
erubis (~> 2.7)
|
|
@@ -77,7 +79,6 @@ GEM
|
|
|
77
79
|
ffi-yajl (~> 2.2)
|
|
78
80
|
highline (~> 1.6, >= 1.6.9)
|
|
79
81
|
iniparse (~> 1.4)
|
|
80
|
-
iso8601 (~> 0.11.0)
|
|
81
82
|
mixlib-archive (~> 0.4)
|
|
82
83
|
mixlib-authentication (~> 2.1)
|
|
83
84
|
mixlib-cli (~> 1.7)
|
|
@@ -89,18 +90,18 @@ GEM
|
|
|
89
90
|
ohai (~> 14.0)
|
|
90
91
|
plist (~> 3.2)
|
|
91
92
|
proxifier (~> 1.0)
|
|
92
|
-
rspec-core (~> 3.5
|
|
93
|
-
rspec-expectations (~> 3.5
|
|
94
|
-
rspec-mocks (~> 3.5
|
|
93
|
+
rspec-core (~> 3.5)
|
|
94
|
+
rspec-expectations (~> 3.5)
|
|
95
|
+
rspec-mocks (~> 3.5)
|
|
95
96
|
rspec_junit_formatter (~> 0.2.0)
|
|
96
97
|
serverspec (~> 2.7)
|
|
97
98
|
specinfra (~> 2.10)
|
|
98
99
|
syslog-logger (~> 1.6)
|
|
99
100
|
uuidtools (~> 2.1.5)
|
|
100
|
-
chef (14.
|
|
101
|
+
chef (14.6.47-universal-mingw32)
|
|
101
102
|
addressable
|
|
102
103
|
bundler (>= 1.10)
|
|
103
|
-
chef-config (= 14.
|
|
104
|
+
chef-config (= 14.6.47)
|
|
104
105
|
chef-zero (>= 13.0)
|
|
105
106
|
diff-lcs (~> 1.2, >= 1.2.4)
|
|
106
107
|
erubis (~> 2.7)
|
|
@@ -108,7 +109,7 @@ GEM
|
|
|
108
109
|
ffi-yajl (~> 2.2)
|
|
109
110
|
highline (~> 1.6, >= 1.6.9)
|
|
110
111
|
iniparse (~> 1.4)
|
|
111
|
-
iso8601 (~> 0.
|
|
112
|
+
iso8601 (~> 0.12.1)
|
|
112
113
|
mixlib-archive (~> 0.4)
|
|
113
114
|
mixlib-authentication (~> 2.1)
|
|
114
115
|
mixlib-cli (~> 1.7)
|
|
@@ -120,9 +121,9 @@ GEM
|
|
|
120
121
|
ohai (~> 14.0)
|
|
121
122
|
plist (~> 3.2)
|
|
122
123
|
proxifier (~> 1.0)
|
|
123
|
-
rspec-core (~> 3.5
|
|
124
|
-
rspec-expectations (~> 3.5
|
|
125
|
-
rspec-mocks (~> 3.5
|
|
124
|
+
rspec-core (~> 3.5)
|
|
125
|
+
rspec-expectations (~> 3.5)
|
|
126
|
+
rspec-mocks (~> 3.5)
|
|
126
127
|
rspec_junit_formatter (~> 0.2.0)
|
|
127
128
|
serverspec (~> 2.7)
|
|
128
129
|
specinfra (~> 2.10)
|
|
@@ -136,13 +137,13 @@ GEM
|
|
|
136
137
|
win32-mutex (~> 0.4.2)
|
|
137
138
|
win32-process (~> 0.8.2)
|
|
138
139
|
win32-service (~> 1.0)
|
|
139
|
-
win32-taskscheduler (~>
|
|
140
|
+
win32-taskscheduler (~> 2.0)
|
|
140
141
|
windows-api (~> 0.4.4)
|
|
141
142
|
wmi-lite (~> 1.0)
|
|
142
143
|
chef-api (0.8.0)
|
|
143
144
|
logify (~> 0.1)
|
|
144
145
|
mime-types
|
|
145
|
-
chef-apply (0.
|
|
146
|
+
chef-apply (0.2.2)
|
|
146
147
|
chef (>= 14.0)
|
|
147
148
|
chef-dk (>= 3.0)
|
|
148
149
|
chef-telemetry
|
|
@@ -155,7 +156,7 @@ GEM
|
|
|
155
156
|
toml-rb
|
|
156
157
|
train
|
|
157
158
|
tty-spinner
|
|
158
|
-
chef-config (14.
|
|
159
|
+
chef-config (14.6.47)
|
|
159
160
|
addressable
|
|
160
161
|
fuzzyurl
|
|
161
162
|
mixlib-config (>= 2.2.12, < 3.0)
|
|
@@ -194,7 +195,7 @@ GEM
|
|
|
194
195
|
concurrent-ruby (~> 1.0)
|
|
195
196
|
ffi-yajl (~> 2.2)
|
|
196
197
|
http (~> 2.2)
|
|
197
|
-
chef-vault (3.4.
|
|
198
|
+
chef-vault (3.4.3)
|
|
198
199
|
chef-zero (14.0.6)
|
|
199
200
|
ffi-yajl (~> 2.2)
|
|
200
201
|
hashie (>= 2.0, < 4.0)
|
|
@@ -208,7 +209,7 @@ GEM
|
|
|
208
209
|
chef (>= 12.16.42)
|
|
209
210
|
fauxhai (>= 4)
|
|
210
211
|
rspec (~> 3.0)
|
|
211
|
-
chefstyle (0.
|
|
212
|
+
chefstyle (0.11.0)
|
|
212
213
|
rubocop (= 0.55.0)
|
|
213
214
|
citrus (3.0.2)
|
|
214
215
|
cleanroom (1.0.0)
|
|
@@ -255,7 +256,7 @@ GEM
|
|
|
255
256
|
multi_json
|
|
256
257
|
domain_name (0.5.20180417)
|
|
257
258
|
unf (>= 0.0.5, < 1.0.0)
|
|
258
|
-
droplet_kit (2.
|
|
259
|
+
droplet_kit (2.6.0)
|
|
259
260
|
activesupport (> 3.0, < 6)
|
|
260
261
|
faraday (~> 0.9)
|
|
261
262
|
kartograph (~> 0.2.3)
|
|
@@ -272,7 +273,7 @@ GEM
|
|
|
272
273
|
http-cookie (~> 1.0.0)
|
|
273
274
|
faraday_middleware (0.12.2)
|
|
274
275
|
faraday (>= 0.7.4, < 1.0)
|
|
275
|
-
fauxhai (6.
|
|
276
|
+
fauxhai (6.9.1)
|
|
276
277
|
net-ssh
|
|
277
278
|
ffi (1.9.25)
|
|
278
279
|
ffi (1.9.25-x64-mingw32)
|
|
@@ -308,7 +309,7 @@ GEM
|
|
|
308
309
|
fog-json (1.2.0)
|
|
309
310
|
fog-core
|
|
310
311
|
multi_json (~> 1.10)
|
|
311
|
-
fog-openstack (0.3.
|
|
312
|
+
fog-openstack (0.3.7)
|
|
312
313
|
fog-core (>= 1.45, <= 2.1.0)
|
|
313
314
|
fog-json (>= 1.0)
|
|
314
315
|
ipaddress (>= 0.8)
|
|
@@ -330,8 +331,8 @@ GEM
|
|
|
330
331
|
fog-xml (0.1.3)
|
|
331
332
|
fog-core
|
|
332
333
|
nokogiri (>= 1.5.11, < 2.0.0)
|
|
333
|
-
foodcritic (14.
|
|
334
|
-
cucumber-core (>= 1.3)
|
|
334
|
+
foodcritic (14.3.0)
|
|
335
|
+
cucumber-core (>= 1.3, < 4.0)
|
|
335
336
|
erubis
|
|
336
337
|
ffi-yajl (~> 2.0)
|
|
337
338
|
nokogiri (>= 1.5, < 2.0)
|
|
@@ -344,17 +345,18 @@ GEM
|
|
|
344
345
|
google-api-client (~> 0.13)
|
|
345
346
|
gherkin (5.1.0)
|
|
346
347
|
git (1.5.0)
|
|
347
|
-
google-api-client (0.
|
|
348
|
+
google-api-client (0.23.9)
|
|
348
349
|
addressable (~> 2.5, >= 2.5.1)
|
|
349
350
|
googleauth (>= 0.5, < 0.7.0)
|
|
350
351
|
httpclient (>= 2.8.1, < 3.0)
|
|
351
352
|
mime-types (~> 3.0)
|
|
352
353
|
representable (~> 3.0)
|
|
353
354
|
retriable (>= 2.0, < 4.0)
|
|
354
|
-
|
|
355
|
+
signet (~> 0.9)
|
|
356
|
+
googleauth (0.6.7)
|
|
355
357
|
faraday (~> 0.12)
|
|
356
358
|
jwt (>= 1.4, < 3.0)
|
|
357
|
-
memoist (~> 0.
|
|
359
|
+
memoist (~> 0.16)
|
|
358
360
|
multi_json (~> 1.11)
|
|
359
361
|
os (>= 0.9, < 2.0)
|
|
360
362
|
signet (~> 0.7)
|
|
@@ -384,12 +386,12 @@ GEM
|
|
|
384
386
|
http-form_data (1.0.3)
|
|
385
387
|
http_parser.rb (0.6.0)
|
|
386
388
|
httpclient (2.8.3)
|
|
387
|
-
i18n (1.1.
|
|
389
|
+
i18n (1.1.1)
|
|
388
390
|
concurrent-ruby (~> 1.0)
|
|
389
391
|
ice_nine (0.11.2)
|
|
390
392
|
inifile (3.0.0)
|
|
391
393
|
iniparse (1.4.4)
|
|
392
|
-
inspec (
|
|
394
|
+
inspec (3.0.12)
|
|
393
395
|
addressable (~> 2.4)
|
|
394
396
|
faraday (>= 0.9.0)
|
|
395
397
|
faraday_middleware (~> 0.12.2)
|
|
@@ -407,44 +409,45 @@ GEM
|
|
|
407
409
|
rubyzip (~> 1.2, >= 1.2.2)
|
|
408
410
|
semverse
|
|
409
411
|
sslshake (~> 1.2)
|
|
412
|
+
term-ansicolor
|
|
410
413
|
thor (~> 0.20)
|
|
411
414
|
tomlrb (~> 1.2)
|
|
412
|
-
train (~> 1.
|
|
415
|
+
train (~> 1.5, >= 1.5.4)
|
|
413
416
|
ipaddress (0.8.3)
|
|
414
|
-
iso8601 (0.
|
|
417
|
+
iso8601 (0.12.1)
|
|
415
418
|
jmespath (1.4.0)
|
|
416
419
|
json (2.1.0)
|
|
417
420
|
jwt (2.1.0)
|
|
418
421
|
kartograph (0.2.7)
|
|
419
|
-
kitchen-azurerm (0.14.
|
|
422
|
+
kitchen-azurerm (0.14.5)
|
|
420
423
|
azure_mgmt_network (~> 0.15, >= 0.15.0)
|
|
421
424
|
azure_mgmt_resources (~> 0.15, >= 0.15.0)
|
|
422
425
|
inifile (~> 3.0, >= 3.0.0)
|
|
423
426
|
sshkey (~> 1, >= 1.0.0)
|
|
424
|
-
kitchen-digitalocean (0.10.
|
|
427
|
+
kitchen-digitalocean (0.10.1)
|
|
425
428
|
droplet_kit (~> 2.3)
|
|
426
429
|
test-kitchen (~> 1.17)
|
|
427
430
|
kitchen-dokken (2.6.7)
|
|
428
431
|
docker-api (~> 1.33)
|
|
429
432
|
lockfile (~> 2.1)
|
|
430
433
|
test-kitchen (~> 1.15)
|
|
431
|
-
kitchen-ec2 (2.
|
|
434
|
+
kitchen-ec2 (2.3.1)
|
|
432
435
|
aws-sdk (~> 2)
|
|
433
436
|
excon
|
|
434
437
|
multi_json
|
|
435
438
|
retryable (~> 2.0)
|
|
436
439
|
test-kitchen (~> 1.4, >= 1.4.1)
|
|
437
|
-
kitchen-google (
|
|
440
|
+
kitchen-google (2.0.0)
|
|
438
441
|
gcewinpass (~> 1.1)
|
|
439
442
|
google-api-client (~> 0.19)
|
|
440
443
|
test-kitchen
|
|
441
|
-
kitchen-hyperv (0.5.
|
|
444
|
+
kitchen-hyperv (0.5.2)
|
|
442
445
|
test-kitchen (~> 1.4)
|
|
443
|
-
kitchen-inspec (0.
|
|
446
|
+
kitchen-inspec (0.25.0)
|
|
444
447
|
hashie (~> 3.4)
|
|
445
|
-
inspec (>= 0.34.0, <
|
|
448
|
+
inspec (>= 0.34.0, < 4.0.0)
|
|
446
449
|
test-kitchen (~> 1.6)
|
|
447
|
-
kitchen-vagrant (1.3.
|
|
450
|
+
kitchen-vagrant (1.3.5)
|
|
448
451
|
test-kitchen (~> 1.4)
|
|
449
452
|
knife-acl (1.0.3)
|
|
450
453
|
knife-cloud (1.2.1)
|
|
@@ -454,9 +457,9 @@ GEM
|
|
|
454
457
|
knife-ec2 (0.19.10)
|
|
455
458
|
fog-aws (>= 1, < 4)
|
|
456
459
|
knife-windows (~> 1.0)
|
|
457
|
-
knife-google (3.3.
|
|
460
|
+
knife-google (3.3.3)
|
|
458
461
|
gcewinpass (~> 1.1)
|
|
459
|
-
google-api-client (
|
|
462
|
+
google-api-client (>= 0.19.8, < 0.25)
|
|
460
463
|
knife-cloud (~> 1.2.0)
|
|
461
464
|
knife-opc (0.4.0)
|
|
462
465
|
knife-push (1.0.3)
|
|
@@ -473,7 +476,7 @@ GEM
|
|
|
473
476
|
knife-windows (~> 1.0)
|
|
474
477
|
netaddr (~> 1.5)
|
|
475
478
|
rbvmomi (~> 1.8)
|
|
476
|
-
knife-windows (1.9.
|
|
479
|
+
knife-windows (1.9.6)
|
|
477
480
|
winrm (~> 2.1)
|
|
478
481
|
winrm-elevated (~> 1.0)
|
|
479
482
|
libyajl2 (1.2.0)
|
|
@@ -496,7 +499,9 @@ GEM
|
|
|
496
499
|
mini_portile2 (2.3.0)
|
|
497
500
|
minitar (0.6.1)
|
|
498
501
|
minitest (5.11.3)
|
|
499
|
-
mixlib-archive (0.4.
|
|
502
|
+
mixlib-archive (0.4.18)
|
|
503
|
+
mixlib-log
|
|
504
|
+
mixlib-archive (0.4.18-universal-mingw32)
|
|
500
505
|
mixlib-log
|
|
501
506
|
mixlib-authentication (2.1.1)
|
|
502
507
|
mixlib-cli (1.7.0)
|
|
@@ -513,7 +518,7 @@ GEM
|
|
|
513
518
|
wmi-lite (~> 1.0)
|
|
514
519
|
mixlib-versioning (1.2.2)
|
|
515
520
|
molinillo (0.6.6)
|
|
516
|
-
ms_rest (0.7.
|
|
521
|
+
ms_rest (0.7.3)
|
|
517
522
|
concurrent-ruby (~> 1.0)
|
|
518
523
|
faraday (~> 0.9)
|
|
519
524
|
timeliness (~> 0.3)
|
|
@@ -538,19 +543,19 @@ GEM
|
|
|
538
543
|
net-ssh-gateway (>= 1.2.0)
|
|
539
544
|
net-telnet (0.1.1)
|
|
540
545
|
netaddr (1.5.1)
|
|
541
|
-
nokogiri (1.8.
|
|
546
|
+
nokogiri (1.8.5)
|
|
542
547
|
mini_portile2 (~> 2.3.0)
|
|
543
|
-
nokogiri (1.8.
|
|
548
|
+
nokogiri (1.8.5-x64-mingw32)
|
|
544
549
|
mini_portile2 (~> 2.3.0)
|
|
545
|
-
nokogiri (1.8.
|
|
550
|
+
nokogiri (1.8.5-x86-mingw32)
|
|
546
551
|
mini_portile2 (~> 2.3.0)
|
|
547
552
|
nori (2.6.0)
|
|
548
553
|
notiffany (0.1.1)
|
|
549
554
|
nenv (~> 0.1)
|
|
550
555
|
shellany (~> 0.0)
|
|
551
|
-
octokit (4.
|
|
556
|
+
octokit (4.13.0)
|
|
552
557
|
sawyer (~> 0.8.0, >= 0.5.3)
|
|
553
|
-
ohai (14.
|
|
558
|
+
ohai (14.6.2)
|
|
554
559
|
chef-config (>= 12.8, < 15)
|
|
555
560
|
ffi (~> 1.9)
|
|
556
561
|
ffi-yajl (~> 2.2)
|
|
@@ -618,22 +623,22 @@ GEM
|
|
|
618
623
|
addressable (>= 2.3.6, < 3.0.0)
|
|
619
624
|
retriable (3.1.2)
|
|
620
625
|
retryable (2.0.4)
|
|
621
|
-
rspec (3.
|
|
622
|
-
rspec-core (~> 3.
|
|
623
|
-
rspec-expectations (~> 3.
|
|
624
|
-
rspec-mocks (~> 3.
|
|
625
|
-
rspec-core (3.
|
|
626
|
-
rspec-support (~> 3.
|
|
627
|
-
rspec-expectations (3.
|
|
626
|
+
rspec (3.8.0)
|
|
627
|
+
rspec-core (~> 3.8.0)
|
|
628
|
+
rspec-expectations (~> 3.8.0)
|
|
629
|
+
rspec-mocks (~> 3.8.0)
|
|
630
|
+
rspec-core (3.8.0)
|
|
631
|
+
rspec-support (~> 3.8.0)
|
|
632
|
+
rspec-expectations (3.8.2)
|
|
628
633
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
629
|
-
rspec-support (~> 3.
|
|
634
|
+
rspec-support (~> 3.8.0)
|
|
630
635
|
rspec-its (1.2.0)
|
|
631
636
|
rspec-core (>= 3.0.0)
|
|
632
637
|
rspec-expectations (>= 3.0.0)
|
|
633
|
-
rspec-mocks (3.
|
|
638
|
+
rspec-mocks (3.8.0)
|
|
634
639
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
635
|
-
rspec-support (~> 3.
|
|
636
|
-
rspec-support (3.
|
|
640
|
+
rspec-support (~> 3.8.0)
|
|
641
|
+
rspec-support (3.8.0)
|
|
637
642
|
rspec_junit_formatter (0.2.3)
|
|
638
643
|
builder (< 4)
|
|
639
644
|
rspec-core (>= 2, < 4, != 2.12.0)
|
|
@@ -662,7 +667,7 @@ GEM
|
|
|
662
667
|
specinfra (~> 2.72)
|
|
663
668
|
sfl (2.3)
|
|
664
669
|
shellany (0.0.1)
|
|
665
|
-
signet (0.
|
|
670
|
+
signet (0.11.0)
|
|
666
671
|
addressable (~> 2.3)
|
|
667
672
|
faraday (~> 0.9)
|
|
668
673
|
jwt (>= 1.5, < 3.0)
|
|
@@ -671,7 +676,7 @@ GEM
|
|
|
671
676
|
solve (4.0.0)
|
|
672
677
|
molinillo (~> 0.6)
|
|
673
678
|
semverse (>= 1.1, < 3.0)
|
|
674
|
-
specinfra (2.76.
|
|
679
|
+
specinfra (2.76.3)
|
|
675
680
|
net-scp
|
|
676
681
|
net-ssh (>= 2.7)
|
|
677
682
|
net-telnet (= 0.1.1)
|
|
@@ -684,6 +689,8 @@ GEM
|
|
|
684
689
|
structured_warnings (0.3.0)
|
|
685
690
|
syslog-logger (1.6.8)
|
|
686
691
|
systemu (2.6.5)
|
|
692
|
+
term-ansicolor (1.6.0)
|
|
693
|
+
tins (~> 1.0)
|
|
687
694
|
test-kitchen (1.23.2)
|
|
688
695
|
mixlib-install (~> 3.6)
|
|
689
696
|
mixlib-shellout (>= 1.2, < 3.0)
|
|
@@ -697,16 +704,18 @@ GEM
|
|
|
697
704
|
thor (0.20.0)
|
|
698
705
|
thread_safe (0.3.6)
|
|
699
706
|
timeliness (0.3.8)
|
|
707
|
+
tins (1.17.0)
|
|
700
708
|
toml-rb (1.1.2)
|
|
701
709
|
citrus (~> 3.0, > 3.0)
|
|
702
710
|
tomlrb (1.2.7)
|
|
703
|
-
train (1.4
|
|
711
|
+
train (1.5.4)
|
|
704
712
|
aws-sdk (~> 2)
|
|
705
713
|
azure_graph_rbac (~> 0.16)
|
|
714
|
+
azure_mgmt_key_vault (~> 0.17)
|
|
706
715
|
azure_mgmt_resources (~> 0.15)
|
|
707
716
|
docker-api (~> 1.26)
|
|
708
|
-
google-api-client (~> 0.
|
|
709
|
-
googleauth (~> 0.6.
|
|
717
|
+
google-api-client (~> 0.23.9)
|
|
718
|
+
googleauth (~> 0.6.6)
|
|
710
719
|
inifile
|
|
711
720
|
json (>= 1.8, < 3.0)
|
|
712
721
|
mixlib-shellout (~> 2.0)
|
|
@@ -755,7 +764,7 @@ GEM
|
|
|
755
764
|
win32-service (1.0.1)
|
|
756
765
|
ffi
|
|
757
766
|
ffi-win32-extensions
|
|
758
|
-
win32-taskscheduler (
|
|
767
|
+
win32-taskscheduler (2.0.0)
|
|
759
768
|
ffi
|
|
760
769
|
structured_warnings
|
|
761
770
|
windows-api (0.4.4)
|
|
@@ -763,7 +772,7 @@ GEM
|
|
|
763
772
|
windows-pr (1.2.6)
|
|
764
773
|
win32-api (>= 1.4.5)
|
|
765
774
|
windows-api (>= 0.4.0)
|
|
766
|
-
winrm (2.
|
|
775
|
+
winrm (2.3.0)
|
|
767
776
|
builder (>= 2.1.2)
|
|
768
777
|
erubis (~> 2.7)
|
|
769
778
|
gssapi (~> 1.2)
|
|
@@ -775,7 +784,7 @@ GEM
|
|
|
775
784
|
winrm-elevated (1.1.0)
|
|
776
785
|
winrm (~> 2.0)
|
|
777
786
|
winrm-fs (~> 1.0)
|
|
778
|
-
winrm-fs (1.3.
|
|
787
|
+
winrm-fs (1.3.1)
|
|
779
788
|
erubis (~> 2.7)
|
|
780
789
|
logging (>= 1.6.1, < 3.0)
|
|
781
790
|
rubyzip (~> 1.1)
|
|
@@ -794,7 +803,7 @@ DEPENDENCIES
|
|
|
794
803
|
artifactory
|
|
795
804
|
berkshelf (>= 7.0.5)
|
|
796
805
|
bundler
|
|
797
|
-
chef (= 14.
|
|
806
|
+
chef (= 14.6.47)
|
|
798
807
|
chef-apply
|
|
799
808
|
chef-dk!
|
|
800
809
|
chef-provisioning (>= 2.7.1)
|
|
@@ -810,23 +819,23 @@ DEPENDENCIES
|
|
|
810
819
|
dco
|
|
811
820
|
dep-selector-libgecode
|
|
812
821
|
dep_selector
|
|
813
|
-
fauxhai (>= 6.
|
|
822
|
+
fauxhai (>= 6.7)
|
|
814
823
|
ffi-libarchive
|
|
815
824
|
ffi-rzmq-core
|
|
816
825
|
foodcritic (>= 12.1)
|
|
817
826
|
guard
|
|
818
|
-
inspec (>= 2.
|
|
827
|
+
inspec (>= 2.3)
|
|
819
828
|
kitchen-azurerm (>= 0.14)
|
|
820
829
|
kitchen-digitalocean (>= 0.10.0)
|
|
821
830
|
kitchen-dokken (>= 2.6.7)
|
|
822
|
-
kitchen-ec2 (>= 2.
|
|
823
|
-
kitchen-google (>=
|
|
831
|
+
kitchen-ec2 (>= 2.3)
|
|
832
|
+
kitchen-google (>= 2.0.0)
|
|
824
833
|
kitchen-hyperv (>= 0.5.1)
|
|
825
|
-
kitchen-inspec (>= 0.
|
|
834
|
+
kitchen-inspec (>= 0.24)
|
|
826
835
|
kitchen-vagrant (>= 1.3.2)
|
|
827
836
|
knife-acl (>= 1.0.3)
|
|
828
837
|
knife-ec2 (>= 0.19.10)
|
|
829
|
-
knife-google (>= 3.3.
|
|
838
|
+
knife-google (>= 3.3.3)
|
|
830
839
|
knife-opc (>= 0.4.0)
|
|
831
840
|
knife-push
|
|
832
841
|
knife-spork
|
|
@@ -870,4 +879,4 @@ DEPENDENCIES
|
|
|
870
879
|
yard
|
|
871
880
|
|
|
872
881
|
BUNDLED WITH
|
|
873
|
-
1.16.
|
|
882
|
+
1.16.6
|