chef 17.0.242-universal-mingw32 → 17.4.25-universal-mingw32

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.
Files changed (254) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +4 -14
  3. data/Rakefile +2 -2
  4. data/chef.gemspec +10 -20
  5. data/lib/chef/action_collection.rb +6 -26
  6. data/lib/chef/application/base.rb +15 -0
  7. data/lib/chef/application.rb +4 -2
  8. data/lib/chef/chef_fs/file_pattern.rb +2 -2
  9. data/lib/chef/client.rb +7 -1
  10. data/lib/chef/compliance/default_attributes.rb +5 -3
  11. data/lib/chef/compliance/reporter/automate.rb +1 -1
  12. data/lib/chef/compliance/runner.rb +17 -3
  13. data/lib/chef/cookbook/cookbook_version_loader.rb +3 -3
  14. data/lib/chef/cookbook/gem_installer.rb +5 -1
  15. data/lib/chef/cookbook_version.rb +26 -4
  16. data/lib/chef/data_collector/run_end_message.rb +1 -1
  17. data/lib/chef/data_collector.rb +0 -1
  18. data/lib/chef/deprecated.rb +14 -4
  19. data/lib/chef/dsl/declare_resource.rb +5 -10
  20. data/lib/chef/dsl/render_helpers.rb +44 -0
  21. data/lib/chef/dsl/secret.rb +64 -0
  22. data/lib/chef/dsl/toml.rb +116 -0
  23. data/lib/chef/dsl/universal.rb +5 -0
  24. data/lib/chef/dsl.rb +1 -0
  25. data/lib/chef/event_dispatch/base.rb +2 -1
  26. data/lib/chef/exceptions.rb +23 -0
  27. data/lib/chef/formatters/doc.rb +2 -1
  28. data/lib/chef/formatters/error_mapper.rb +2 -2
  29. data/lib/chef/handler/slow_report.rb +66 -0
  30. data/lib/chef/handler.rb +46 -8
  31. data/lib/chef/json_compat.rb +1 -1
  32. data/lib/chef/node.rb +21 -20
  33. data/lib/chef/policy_builder/policyfile.rb +88 -45
  34. data/lib/chef/provider/directory.rb +6 -6
  35. data/lib/chef/provider/execute.rb +1 -1
  36. data/lib/chef/provider/file.rb +2 -2
  37. data/lib/chef/provider/group/dscl.rb +1 -1
  38. data/lib/chef/provider/launchd.rb +6 -6
  39. data/lib/chef/provider/link.rb +1 -1
  40. data/lib/chef/provider/lwrp_base.rb +1 -1
  41. data/lib/chef/provider/package/dnf/dnf_helper.py +11 -10
  42. data/lib/chef/provider/package/dnf/python_helper.rb +9 -8
  43. data/lib/chef/provider/package/habitat.rb +168 -0
  44. data/lib/chef/provider/package/powershell.rb +5 -0
  45. data/lib/chef/provider/package/yum/python_helper.rb +15 -10
  46. data/lib/chef/provider/package/yum/yum_helper.py +46 -62
  47. data/lib/chef/provider/package/yum.rb +1 -4
  48. data/lib/chef/provider/registry_key.rb +1 -1
  49. data/lib/chef/provider/service/systemd.rb +1 -1
  50. data/lib/chef/provider/subversion.rb +4 -4
  51. data/lib/chef/provider/support/yum_repo.erb +1 -1
  52. data/lib/chef/provider/support/zypper_repo.erb +4 -2
  53. data/lib/chef/provider/systemd_unit.rb +18 -17
  54. data/lib/chef/provider/template/content.rb +1 -1
  55. data/lib/chef/provider/user/mac.rb +3 -3
  56. data/lib/chef/provider/windows_script.rb +1 -1
  57. data/lib/chef/provider/yum_repository.rb +27 -43
  58. data/lib/chef/provider/zypper_repository.rb +30 -34
  59. data/lib/chef/provider.rb +26 -1
  60. data/lib/chef/provider_resolver.rb +8 -2
  61. data/lib/chef/providers.rb +1 -0
  62. data/lib/chef/resource/alternatives.rb +5 -5
  63. data/lib/chef/resource/apt_preference.rb +2 -2
  64. data/lib/chef/resource/apt_repository.rb +2 -2
  65. data/lib/chef/resource/apt_update.rb +4 -4
  66. data/lib/chef/resource/build_essential.rb +1 -1
  67. data/lib/chef/resource/chef_client_config.rb +10 -5
  68. data/lib/chef/resource/chef_client_cron.rb +3 -3
  69. data/lib/chef/resource/chef_client_launchd.rb +3 -3
  70. data/lib/chef/resource/chef_client_scheduled_task.rb +15 -15
  71. data/lib/chef/resource/chef_client_systemd_timer.rb +3 -3
  72. data/lib/chef/resource/chef_client_trusted_certificate.rb +2 -2
  73. data/lib/chef/resource/chef_handler.rb +2 -2
  74. data/lib/chef/resource/chef_sleep.rb +1 -1
  75. data/lib/chef/resource/chef_vault_secret.rb +2 -2
  76. data/lib/chef/resource/chocolatey_feature.rb +2 -2
  77. data/lib/chef/resource/chocolatey_source.rb +1 -1
  78. data/lib/chef/resource/cron/cron_d.rb +4 -6
  79. data/lib/chef/resource/cron_access.rb +1 -1
  80. data/lib/chef/resource/dmg_package.rb +1 -1
  81. data/lib/chef/resource/dsc_resource.rb +1 -1
  82. data/lib/chef/resource/execute.rb +5 -5
  83. data/lib/chef/resource/gem_package.rb +2 -1
  84. data/lib/chef/resource/group.rb +4 -4
  85. data/lib/chef/resource/habitat/_habitat_shared.rb +28 -0
  86. data/lib/chef/resource/habitat/habitat_package.rb +129 -0
  87. data/lib/chef/resource/habitat/habitat_sup.rb +329 -0
  88. data/lib/chef/resource/habitat/habitat_sup_systemd.rb +67 -0
  89. data/lib/chef/resource/habitat/habitat_sup_windows.rb +90 -0
  90. data/lib/chef/resource/habitat_config.rb +107 -0
  91. data/lib/chef/resource/habitat_install.rb +247 -0
  92. data/lib/chef/resource/habitat_service.rb +451 -0
  93. data/lib/chef/resource/habitat_user_toml.rb +92 -0
  94. data/lib/chef/resource/homebrew_cask.rb +18 -7
  95. data/lib/chef/resource/homebrew_package.rb +1 -1
  96. data/lib/chef/resource/homebrew_tap.rb +4 -3
  97. data/lib/chef/resource/homebrew_update.rb +2 -2
  98. data/lib/chef/resource/hostname.rb +49 -7
  99. data/lib/chef/resource/inspec_waiver_file_entry.rb +156 -0
  100. data/lib/chef/resource/kernel_module.rb +6 -6
  101. data/lib/chef/resource/launchd.rb +3 -3
  102. data/lib/chef/resource/locale.rb +1 -1
  103. data/lib/chef/resource/lwrp_base.rb +18 -3
  104. data/lib/chef/resource/macos_userdefaults.rb +2 -2
  105. data/lib/chef/resource/ohai_hint.rb +2 -6
  106. data/lib/chef/resource/openbsd_package.rb +17 -0
  107. data/lib/chef/resource/openssl_dhparam.rb +1 -2
  108. data/lib/chef/resource/openssl_ec_private_key.rb +1 -3
  109. data/lib/chef/resource/openssl_ec_public_key.rb +1 -3
  110. data/lib/chef/resource/openssl_rsa_private_key.rb +1 -3
  111. data/lib/chef/resource/openssl_rsa_public_key.rb +1 -3
  112. data/lib/chef/resource/openssl_x509_certificate.rb +1 -4
  113. data/lib/chef/resource/openssl_x509_crl.rb +1 -3
  114. data/lib/chef/resource/openssl_x509_request.rb +1 -3
  115. data/lib/chef/resource/osx_profile.rb +3 -3
  116. data/lib/chef/resource/plist.rb +1 -1
  117. data/lib/chef/resource/powershell_package_source.rb +2 -4
  118. data/lib/chef/resource/reboot.rb +38 -9
  119. data/lib/chef/resource/remote_directory.rb +2 -2
  120. data/lib/chef/resource/remote_file.rb +3 -3
  121. data/lib/chef/resource/rhsm_errata.rb +0 -2
  122. data/lib/chef/resource/rhsm_errata_level.rb +1 -5
  123. data/lib/chef/resource/rhsm_repo.rb +15 -0
  124. data/lib/chef/resource/rhsm_subscription.rb +5 -5
  125. data/lib/chef/resource/ruby_block.rb +100 -0
  126. data/lib/chef/resource/scm/subversion.rb +1 -1
  127. data/lib/chef/resource/ssh_known_hosts_entry.rb +4 -7
  128. data/lib/chef/resource/sudo.rb +2 -6
  129. data/lib/chef/resource/support/HabService.dll.config.erb +19 -0
  130. data/lib/chef/resource/support/client.erb +8 -1
  131. data/lib/chef/resource/support/sup.toml.erb +179 -0
  132. data/lib/chef/resource/swap_file.rb +2 -6
  133. data/lib/chef/resource/sysctl.rb +2 -2
  134. data/lib/chef/resource/systemd_unit.rb +3 -3
  135. data/lib/chef/resource/timezone.rb +1 -1
  136. data/lib/chef/resource/user_ulimit.rb +2 -2
  137. data/lib/chef/resource/windows_ad_join.rb +2 -2
  138. data/lib/chef/resource/windows_audit_policy.rb +2 -2
  139. data/lib/chef/resource/windows_auto_run.rb +2 -2
  140. data/lib/chef/resource/windows_certificate.rb +1 -1
  141. data/lib/chef/resource/windows_defender.rb +163 -0
  142. data/lib/chef/resource/windows_defender_exclusion.rb +125 -0
  143. data/lib/chef/resource/windows_dfs_folder.rb +2 -2
  144. data/lib/chef/resource/windows_dfs_namespace.rb +2 -2
  145. data/lib/chef/resource/windows_dns_record.rb +2 -2
  146. data/lib/chef/resource/windows_dns_zone.rb +2 -2
  147. data/lib/chef/resource/windows_env.rb +1 -1
  148. data/lib/chef/resource/windows_feature.rb +3 -3
  149. data/lib/chef/resource/windows_feature_dism.rb +3 -5
  150. data/lib/chef/resource/windows_feature_powershell.rb +3 -3
  151. data/lib/chef/resource/windows_firewall_profile.rb +2 -2
  152. data/lib/chef/resource/windows_firewall_rule.rb +20 -6
  153. data/lib/chef/resource/windows_font.rb +2 -2
  154. data/lib/chef/resource/windows_pagefile.rb +104 -65
  155. data/lib/chef/resource/windows_path.rb +4 -4
  156. data/lib/chef/resource/windows_printer.rb +80 -61
  157. data/lib/chef/resource/windows_printer_port.rb +48 -65
  158. data/lib/chef/resource/windows_security_policy.rb +7 -4
  159. data/lib/chef/resource/windows_share.rb +2 -2
  160. data/lib/chef/resource/windows_shortcut.rb +1 -1
  161. data/lib/chef/resource/windows_task.rb +2 -2
  162. data/lib/chef/resource/windows_uac.rb +3 -5
  163. data/lib/chef/resource/windows_update_settings.rb +259 -0
  164. data/lib/chef/resource/windows_user_privilege.rb +2 -2
  165. data/lib/chef/resource/windows_workgroup.rb +2 -2
  166. data/lib/chef/resource/yum_package.rb +11 -15
  167. data/lib/chef/resource/zypper_package.rb +4 -4
  168. data/lib/chef/resource/zypper_repository.rb +28 -8
  169. data/lib/chef/resource.rb +20 -25
  170. data/lib/chef/resource_builder.rb +8 -2
  171. data/lib/chef/resource_inspector.rb +6 -2
  172. data/lib/chef/resource_reporter.rb +0 -1
  173. data/lib/chef/resources.rb +13 -1
  174. data/lib/chef/run_lock.rb +1 -1
  175. data/lib/chef/runner.rb +1 -1
  176. data/lib/chef/secret_fetcher/aws_secrets_manager.rb +65 -0
  177. data/lib/chef/secret_fetcher/azure_key_vault.rb +78 -0
  178. data/lib/chef/secret_fetcher/base.rb +76 -0
  179. data/lib/chef/secret_fetcher/example.rb +46 -0
  180. data/lib/chef/secret_fetcher.rb +55 -0
  181. data/lib/chef/shell/ext.rb +3 -3
  182. data/lib/chef/version.rb +1 -1
  183. data/lib/chef/win32/api.rb +9 -2
  184. data/spec/data/knife-home/.chef/plugins/knife/example_home_subcommand.rb +0 -0
  185. data/spec/data/knife-site-subcommands/plugins/knife/example_subcommand.rb +0 -0
  186. data/spec/data/knife_subcommand/test_explicit_category.rb +7 -0
  187. data/spec/data/knife_subcommand/test_name_mapping.rb +4 -0
  188. data/spec/data/knife_subcommand/test_yourself.rb +21 -0
  189. data/spec/functional/mixin/from_file_spec.rb +1 -1
  190. data/spec/functional/resource/dnf_package_spec.rb +857 -537
  191. data/spec/functional/resource/group_spec.rb +1 -1
  192. data/spec/functional/resource/link_spec.rb +1 -1
  193. data/spec/functional/resource/remote_file_spec.rb +1 -1
  194. data/spec/functional/resource/windows_env_spec.rb +2 -2
  195. data/spec/functional/resource/windows_hostname_spec.rb +91 -0
  196. data/spec/functional/resource/windows_pagefile_spec.rb +98 -0
  197. data/spec/functional/resource/yum_package_spec.rb +495 -428
  198. data/spec/integration/client/client_spec.rb +0 -20
  199. data/spec/integration/compliance/compliance_spec.rb +1 -0
  200. data/spec/integration/recipes/recipe_dsl_spec.rb +1 -1
  201. data/spec/integration/recipes/resource_action_spec.rb +6 -6
  202. data/spec/integration/recipes/unified_mode_spec.rb +70 -0
  203. data/spec/spec_helper.rb +3 -0
  204. data/spec/support/chef_helpers.rb +1 -1
  205. data/spec/support/shared/functional/execute_resource.rb +1 -1
  206. data/spec/support/shared/functional/knife.rb +37 -0
  207. data/spec/support/shared/integration/knife_support.rb +192 -0
  208. data/spec/support/shared/unit/knife_shared.rb +39 -0
  209. data/spec/support/shared/unit/provider/file.rb +3 -9
  210. data/spec/unit/chef_fs/file_system/repository/directory_spec.rb +1 -1
  211. data/spec/unit/compliance/runner_spec.rb +46 -2
  212. data/spec/unit/cookbook_version_spec.rb +52 -0
  213. data/spec/unit/data_collector_spec.rb +47 -1
  214. data/spec/unit/dsl/render_helpers_spec.rb +102 -0
  215. data/spec/unit/dsl/secret_spec.rb +71 -0
  216. data/spec/unit/handler_spec.rb +8 -2
  217. data/spec/unit/policy_builder/dynamic_spec.rb +0 -5
  218. data/spec/unit/policy_builder/policyfile_spec.rb +144 -56
  219. data/spec/unit/provider/apt_update_spec.rb +3 -1
  220. data/spec/unit/provider/link_spec.rb +1 -1
  221. data/spec/unit/provider/mount/aix_spec.rb +1 -1
  222. data/spec/unit/provider/package/dnf/python_helper_spec.rb +1 -0
  223. data/spec/unit/provider/package/powershell_spec.rb +74 -12
  224. data/spec/unit/provider/package/yum/python_helper_spec.rb +1 -0
  225. data/spec/unit/provider/service/systemd_service_spec.rb +2 -2
  226. data/spec/unit/provider/systemd_unit_spec.rb +2 -2
  227. data/spec/unit/provider/zypper_repository_spec.rb +3 -10
  228. data/spec/unit/provider_spec.rb +23 -0
  229. data/spec/unit/resource/homebrew_cask_spec.rb +29 -11
  230. data/spec/unit/resource/inspec_waiver_file_entry_spec.rb +80 -0
  231. data/spec/unit/resource/rhsm_subscription_spec.rb +50 -3
  232. data/spec/unit/resource/systemd_unit_spec.rb +1 -1
  233. data/spec/unit/resource/windows_defender_exclusion_spec.rb +62 -0
  234. data/spec/unit/resource/windows_defender_spec.rb +71 -0
  235. data/spec/unit/resource/windows_firewall_rule_spec.rb +12 -7
  236. data/spec/unit/resource/windows_pagefile_spec.rb +4 -9
  237. data/spec/unit/resource/windows_update_settings_spec.rb +64 -0
  238. data/spec/unit/resource/zypper_repository_spec.rb +1 -1
  239. data/spec/unit/resource_spec.rb +19 -8
  240. data/spec/unit/secret_fetcher/aws_secrets_manager_spec.rb +70 -0
  241. data/spec/unit/secret_fetcher/azure_key_vault_spec.rb +70 -0
  242. data/spec/unit/secret_fetcher_spec.rb +82 -0
  243. data/tasks/rspec.rb +4 -9
  244. metadata +65 -161
  245. data/lib/chef/provider/package/yum/simplejson/LICENSE.txt +0 -79
  246. data/lib/chef/provider/package/yum/simplejson/__init__.py +0 -318
  247. data/lib/chef/provider/package/yum/simplejson/__init__.pyc +0 -0
  248. data/lib/chef/provider/package/yum/simplejson/decoder.py +0 -354
  249. data/lib/chef/provider/package/yum/simplejson/decoder.pyc +0 -0
  250. data/lib/chef/provider/package/yum/simplejson/encoder.py +0 -440
  251. data/lib/chef/provider/package/yum/simplejson/encoder.pyc +0 -0
  252. data/lib/chef/provider/package/yum/simplejson/scanner.py +0 -65
  253. data/lib/chef/provider/package/yum/simplejson/scanner.pyc +0 -0
  254. data/lib/chef/provider/package/yum/simplejson/tool.py +0 -37
@@ -51,7 +51,7 @@ class Chef
51
51
  "id" => run_status&.run_id,
52
52
  "message_version" => "1.1.0",
53
53
  "message_type" => "run_converge",
54
- "node" => node || {},
54
+ "node" => node&.data_for_save || {},
55
55
  "node_name" => node&.name || data_collector.node_name,
56
56
  "organization_name" => organization,
57
57
  "resources" => all_action_records(action_collection),
@@ -104,7 +104,6 @@ class Chef
104
104
  #
105
105
  def action_collection_registration(action_collection)
106
106
  @action_collection = action_collection
107
- action_collection.register(self)
108
107
  end
109
108
 
110
109
  # - Creates and writes our NodeUUID back to the node object
@@ -79,10 +79,12 @@ class Chef
79
79
  return true if location =~ /^(.*?):(\d+):in/ && begin
80
80
  # Don't buffer the whole file in memory, so read it one line at a time.
81
81
  line_no = $2.to_i
82
- location_file = ::File.open($1)
83
- (line_no - 1).times { location_file.readline } # Read all the lines we don't care about.
84
- relevant_line = location_file.readline
85
- relevant_line.match?(/#.*chef:silence_deprecation($|[^:]|:#{self.class.deprecation_key})/)
82
+ if File.exist?($1) # some stacktraces come from `eval` and not a file
83
+ location_file = ::File.open($1)
84
+ (line_no - 1).times { location_file.readline } # Read all the lines we don't care about.
85
+ relevant_line = location_file.readline
86
+ relevant_line.match?(/#.*chef:silence_deprecation($|[^:]|:#{self.class.deprecation_key})/)
87
+ end
86
88
  end
87
89
 
88
90
  false
@@ -253,6 +255,14 @@ class Chef
253
255
  target 33
254
256
  end
255
257
 
258
+ class AttributeWhitelistConfiguration < Base
259
+ target 34
260
+ end
261
+
262
+ class PolicyfileCompatMode < Base
263
+ target 35
264
+ end
265
+
256
266
  class Generic < Base
257
267
  def url
258
268
  "https://docs.chef.io/chef_deprecations_client/"
@@ -156,15 +156,7 @@ class Chef
156
156
  def edit_resource(type, name, created_at: nil, run_context: self.run_context, &resource_attrs_block)
157
157
  edit_resource!(type, name, created_at: created_at, run_context: run_context, &resource_attrs_block)
158
158
  rescue Chef::Exceptions::ResourceNotFound
159
- resource = declare_resource(type, name, created_at: created_at, run_context: run_context)
160
- if resource_attrs_block
161
- if defined?(new_resource)
162
- resource.instance_exec(new_resource, &resource_attrs_block)
163
- else
164
- resource.instance_exec(&resource_attrs_block)
165
- end
166
- end
167
- resource
159
+ declare_resource(type, name, created_at: created_at, run_context: run_context, &resource_attrs_block)
168
160
  end
169
161
 
170
162
  # Find existing resources by searching the list of existing resources. Possible
@@ -306,6 +298,8 @@ class Chef
306
298
 
307
299
  enclosing_provider ||= self if is_a?(Chef::Provider)
308
300
 
301
+ nr = new_resource if defined?(new_resource)
302
+
309
303
  Chef::ResourceBuilder.new(
310
304
  type: type,
311
305
  name: name,
@@ -314,7 +308,8 @@ class Chef
314
308
  run_context: run_context,
315
309
  cookbook_name: cookbook_name,
316
310
  recipe_name: recipe_name,
317
- enclosing_provider: enclosing_provider
311
+ enclosing_provider: enclosing_provider,
312
+ new_resource: nr
318
313
  ).build(&resource_attrs_block)
319
314
  end
320
315
 
@@ -0,0 +1,44 @@
1
+ #
2
+ # Copyright:: Copyright (c) Chef Software Inc.
3
+ # License:: Apache License, Version 2.0
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+ require_relative "toml"
17
+ require_relative "../json_compat"
18
+ autoload :YAML, "yaml"
19
+
20
+ class Chef
21
+ module DSL
22
+ module RenderHelpers
23
+
24
+ # pretty-print a hash as a JSON string
25
+ def render_json(hash)
26
+ JSON.pretty_generate(hash) + "\n"
27
+ end
28
+
29
+ # pretty-print a hash as a TOML string
30
+ def render_toml(hash)
31
+ Chef::DSL::Toml::Dumper.new(hash).toml_str
32
+ end
33
+
34
+ # pretty-print a hash as a YAML string
35
+ def render_yaml(hash)
36
+ yaml_content = hash.transform_keys(&:to_s).to_yaml
37
+ # above replaces first-level keys with strings, below the rest
38
+ yaml_content.gsub!(" :", " ")
39
+ end
40
+
41
+ extend self
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,64 @@
1
+ #
2
+ # Author:: Marc Paradise (<marc@chef.io>)
3
+ # Copyright:: Copyright (c) Chef Software Inc.
4
+ # License:: Apache License, Version 2.0
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #
18
+ require_relative "../secret_fetcher"
19
+
20
+ class Chef
21
+ module DSL
22
+ module Secret
23
+
24
+ # Helper method which looks up a secret using the given service and configuration,
25
+ # and returns the retrieved secret value.
26
+ # This DSL providers a wrapper around [Chef::SecretFetcher]
27
+ #
28
+ # Use of the secret helper in the context of a resource block will automatically mark
29
+ # that resource as 'sensitive', preventing resource data from being logged. See [Chef::Resource#sensitive].
30
+ #
31
+ # @option name [Object] The identifier or name for this secret
32
+ # @option version [Object] The secret version. If a service supports versions
33
+ # and no version is provided, the latest version will be fetched.
34
+ # @option service [Symbol] The service identifier for the service that will
35
+ # perform the secret lookup. See
36
+ # [Chef::SecretFetcher::SECRET_FETCHERS]
37
+ # @option config [Hash] The configuration that the named service expects
38
+ #
39
+ # @return result [Object] The response object type is determined by the fetcher but will usually be a string or a hash.
40
+ # See individual fetcher documentation to know what to expect for a given service.
41
+ #
42
+ # @example
43
+ #
44
+ # This example uses the built-in :example secret manager service, which
45
+ # accepts a hash of secrets.
46
+ #
47
+ # value = secret(name: "test1", service: :example, config: { "test1" => "value1" })
48
+ # log "My secret is #{value}"
49
+ #
50
+ # value = secret(name: "test1", service: :aws_secrets_manager, version: "v1", config: { region: "us-west-1" })
51
+ # log "My secret is #{value}"
52
+ def secret(name: nil, version: nil, service: nil, config: {})
53
+ Chef::Log.warn <<~EOM.gsub("\n", " ")
54
+ The secrets Chef Infra language helper is currently in beta.
55
+ This helper will most likely change over time in potentially breaking ways.
56
+ If you have feedback or you'd like to be part of the future design of this
57
+ helper e-mail us at secrets_management_beta@progress.com"
58
+ EOM
59
+ sensitive(true) if is_a?(Chef::Resource)
60
+ Chef::SecretFetcher.for_service(service, config, run_context).fetch(name, version)
61
+ end
62
+ end
63
+ end
64
+ end
@@ -0,0 +1,116 @@
1
+ require "date"
2
+
3
+ # imported from https://github.com/chef-cookbooks/habitat
4
+ class Chef
5
+ module DSL
6
+ module Toml
7
+ class Dumper
8
+ attr_reader :toml_str
9
+
10
+ def initialize(hash)
11
+ @toml_str = ""
12
+
13
+ visit(hash, [])
14
+ end
15
+
16
+ private
17
+
18
+ def visit(hash, prefix, extra_brackets = false)
19
+ simple_pairs, nested_pairs, table_array_pairs = sort_pairs hash
20
+
21
+ if prefix.any? && (simple_pairs.any? || hash.empty?)
22
+ print_prefix prefix, extra_brackets
23
+ end
24
+
25
+ dump_pairs simple_pairs, nested_pairs, table_array_pairs, prefix
26
+ end
27
+
28
+ def sort_pairs(hash)
29
+ nested_pairs = []
30
+ simple_pairs = []
31
+ table_array_pairs = []
32
+
33
+ hash.keys.sort.each do |key|
34
+ val = hash[key]
35
+ element = [key, val]
36
+
37
+ if val.is_a? Hash
38
+ nested_pairs << element
39
+ elsif val.is_a?(Array) && val.first.is_a?(Hash)
40
+ table_array_pairs << element
41
+ else
42
+ simple_pairs << element
43
+ end
44
+ end
45
+
46
+ [simple_pairs, nested_pairs, table_array_pairs]
47
+ end
48
+
49
+ def dump_pairs(simple, nested, table_array, prefix = [])
50
+ # First add simple pairs, under the prefix
51
+ dump_simple_pairs simple
52
+ dump_nested_pairs nested, prefix
53
+ dump_table_array_pairs table_array, prefix
54
+ end
55
+
56
+ def dump_simple_pairs(simple_pairs)
57
+ simple_pairs.each do |key, val|
58
+ key = quote_key(key) unless bare_key? key
59
+ @toml_str << "#{key} = #{to_toml(val)}\n"
60
+ end
61
+ end
62
+
63
+ def dump_nested_pairs(nested_pairs, prefix)
64
+ nested_pairs.each do |key, val|
65
+ key = quote_key(key) unless bare_key? key
66
+
67
+ visit val, prefix + [key], false
68
+ end
69
+ end
70
+
71
+ def dump_table_array_pairs(table_array_pairs, prefix)
72
+ table_array_pairs.each do |key, val|
73
+ key = quote_key(key) unless bare_key? key
74
+ aux_prefix = prefix + [key]
75
+
76
+ val.each do |child|
77
+ print_prefix aux_prefix, true
78
+ args = sort_pairs(child) << aux_prefix
79
+
80
+ dump_pairs(*args)
81
+ end
82
+ end
83
+ end
84
+
85
+ def print_prefix(prefix, array = false)
86
+ new_prefix = prefix.join(".")
87
+ new_prefix = "[#{new_prefix}]" if array
88
+
89
+ @toml_str += "[#{new_prefix}]\n"
90
+ end
91
+
92
+ def to_toml(obj)
93
+ if obj.is_a?(Time) || obj.is_a?(DateTime)
94
+ obj.strftime("%Y-%m-%dT%H:%M:%SZ")
95
+ elsif obj.is_a?(Date)
96
+ obj.strftime("%Y-%m-%d")
97
+ elsif obj.is_a? Regexp
98
+ obj.inspect.inspect
99
+ elsif obj.is_a? String
100
+ obj.inspect.gsub(/\\(#[$@{])/, '\1')
101
+ else
102
+ obj.inspect
103
+ end
104
+ end
105
+
106
+ def bare_key?(key)
107
+ !!key.to_s.match(/^[a-zA-Z0-9_-]*$/)
108
+ end
109
+
110
+ def quote_key(key)
111
+ '"' + key.gsub('"', '\\"') + '"'
112
+ end
113
+ end
114
+ end
115
+ end
116
+ end
@@ -22,6 +22,9 @@ require_relative "data_query"
22
22
  require_relative "chef_vault"
23
23
  require_relative "registry_helper"
24
24
  require_relative "powershell"
25
+ require_relative "secret"
26
+ require_relative "render_helpers"
27
+ require_relative "toml"
25
28
  require_relative "../mixin/powershell_exec"
26
29
  require_relative "../mixin/powershell_out"
27
30
  require_relative "../mixin/shell_out"
@@ -47,6 +50,8 @@ class Chef
47
50
  include Chef::DSL::ChefVault
48
51
  include Chef::DSL::RegistryHelper
49
52
  include Chef::DSL::Powershell
53
+ include Chef::DSL::RenderHelpers
54
+ include Chef::DSL::Secret
50
55
  include Chef::Mixin::PowershellExec
51
56
  include Chef::Mixin::PowershellOut
52
57
  include Chef::Mixin::ShellOut
data/lib/chef/dsl.rb CHANGED
@@ -4,3 +4,4 @@ require_relative "dsl/data_query"
4
4
  require_relative "dsl/include_recipe"
5
5
  require_relative "dsl/include_attribute"
6
6
  require_relative "dsl/registry_helper"
7
+ require_relative "dsl/secret"
@@ -221,7 +221,8 @@ class Chef
221
221
  # Called before convergence starts
222
222
  def converge_start(run_context); end
223
223
 
224
- # Callback hook for handlers to register their interest in the action_collection
224
+ # Callback hook for handlers to grab a reference to the action_collection
225
+ # (sent before compiling cookbooks, consumers can also find it off the run_context.action_collection)
225
226
  def action_collection_registration(action_collection); end
226
227
 
227
228
  # Called when the converge phase is finished.
@@ -174,6 +174,9 @@ class Chef
174
174
  class CannotDetermineWindowsInstallerType < Package; end
175
175
  class NoWindowsPackageSource < Package; end
176
176
 
177
+ # for example, if both recipes/default.yml, recipes/default.yaml are present
178
+ class AmbiguousYAMLFile < RuntimeError; end
179
+
177
180
  # Can not create staging file during file deployment
178
181
  class FileContentStagingError < RuntimeError
179
182
  def initialize(errors)
@@ -287,6 +290,26 @@ class Chef
287
290
 
288
291
  end
289
292
 
293
+ class Secret
294
+ class RetrievalError < RuntimeError; end
295
+ class ConfigurationInvalid < RuntimeError; end
296
+ class FetchFailed < RuntimeError; end
297
+ class MissingSecretName < RuntimeError; end
298
+ class InvalidSecretName < RuntimeError; end
299
+
300
+ class InvalidFetcherService < RuntimeError
301
+ def initialize(given, fetcher_service_names)
302
+ super("#{given} is not a supported secrets service. Supported services are: :#{fetcher_service_names.join(" :")}")
303
+ end
304
+ end
305
+
306
+ class MissingFetcher < RuntimeError
307
+ def initialize(fetcher_service_names)
308
+ super("No secret service provided. Supported services are: :#{fetcher_service_names.join(" :")}")
309
+ end
310
+ end
311
+ end
312
+
290
313
  # Exception class for collecting multiple failures. Used when running
291
314
  # delayed notifications so that chef can process each delayed
292
315
  # notification even if chef client or other notifications fail.
@@ -56,7 +56,8 @@ class Chef
56
56
  # Print out deprecations.
57
57
  unless deprecations.empty?
58
58
  puts_line ""
59
- puts_line "Deprecated features used!"
59
+ puts_line "Deprecation warnings that must be addressed before upgrading to Chef Infra #{Chef::VERSION.to_i + 1}:"
60
+ puts_line ""
60
61
  deprecations.each do |message, details|
61
62
  locations = details[:locations]
62
63
  if locations.size == 1
@@ -27,7 +27,7 @@ class Chef
27
27
  # Failed to register this client with the server.
28
28
  def self.registration_failed(node_name, exception, config)
29
29
  error_inspector = ErrorInspectors::RegistrationErrorInspector.new(node_name, exception, config)
30
- headline = "Chef encountered an error attempting to create the client \"#{node_name}\""
30
+ headline = "Chef Infra Client encountered an error attempting to create the client \"#{node_name}\""
31
31
  description = ErrorDescription.new(headline)
32
32
  error_inspector.add_explanation(description)
33
33
  description
@@ -35,7 +35,7 @@ class Chef
35
35
 
36
36
  def self.node_load_failed(node_name, exception, config)
37
37
  error_inspector = ErrorInspectors::NodeLoadErrorInspector.new(node_name, exception, config)
38
- headline = "Chef encountered an error attempting to load the node data for \"#{node_name}\""
38
+ headline = "Chef Infra Client encountered an error attempting to load the node data for \"#{node_name}\""
39
39
  description = ErrorDescription.new(headline)
40
40
  error_inspector.add_explanation(description)
41
41
  description
@@ -0,0 +1,66 @@
1
+ #
2
+ # Copyright:: Copyright (c) Chef Software Inc.
3
+ # License:: Apache License, Version 2.0
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+ #
17
+
18
+ require_relative "../handler"
19
+ require "tty/table" unless defined?(TTY::Table)
20
+
21
+ class Chef
22
+ class Handler
23
+ class SlowReport < ::Chef::Handler
24
+ attr_accessor :amount
25
+
26
+ def initialize(amount)
27
+ @amount = Integer(amount) rescue nil
28
+ @amount ||= 10
29
+ end
30
+
31
+ def report
32
+ if count == 0
33
+ puts "\nNo resources to profile\n\n"
34
+ return
35
+ end
36
+
37
+ top = all_records.sort_by(&:elapsed_time).last(amount).reverse
38
+ data = top.map { |r| [ r.new_resource.to_s, r.elapsed_time, r.action, r.new_resource.cookbook_name, r.new_resource.recipe_name, stripped_source_line(r.new_resource) ] }
39
+ puts "\nTop #{count} slowest #{count == 1 ? "resource" : "resources"}:\n\n"
40
+ table = TTY::Table.new(%w{resource elapsed_time action cookbook recipe source}, data)
41
+ rendered = table.render do |renderer|
42
+ renderer.border do
43
+ mid "-"
44
+ mid_mid " "
45
+ end
46
+ end
47
+ puts rendered
48
+ puts "\n"
49
+ end
50
+
51
+ def all_records
52
+ @all_records ||= action_collection&.filtered_collection(unprocessed: false) || []
53
+ end
54
+
55
+ def count
56
+ num = all_resources.count
57
+ num > amount ? amount : num
58
+ end
59
+
60
+ def stripped_source_line(resource)
61
+ # strip the leading path off of the source line
62
+ resource.source_line&.gsub(%r{.*/cookbooks/}, "")&.gsub(%r{.*/chef-[0-9\.]+/}, "")
63
+ end
64
+ end
65
+ end
66
+ end