chef 17.1.35-universal-mingw32 → 17.4.38-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.
- checksums.yaml +4 -4
- data/Gemfile +6 -4
- data/chef.gemspec +1 -0
- data/lib/chef/action_collection.rb +6 -26
- data/lib/chef/application/base.rb +15 -0
- data/lib/chef/application.rb +4 -2
- data/lib/chef/client.rb +7 -1
- data/lib/chef/compliance/default_attributes.rb +5 -3
- data/lib/chef/compliance/reporter/automate.rb +1 -1
- data/lib/chef/compliance/runner.rb +16 -2
- data/lib/chef/cookbook_version.rb +26 -4
- data/lib/chef/data_collector/run_end_message.rb +1 -1
- data/lib/chef/data_collector.rb +0 -1
- data/lib/chef/deprecated.rb +14 -4
- data/lib/chef/dsl/render_helpers.rb +44 -0
- data/lib/chef/dsl/secret.rb +64 -0
- data/lib/chef/dsl/toml.rb +116 -0
- data/lib/chef/dsl/universal.rb +5 -0
- data/lib/chef/dsl.rb +1 -0
- data/lib/chef/event_dispatch/base.rb +2 -1
- data/lib/chef/exceptions.rb +23 -0
- data/lib/chef/formatters/doc.rb +14 -13
- data/lib/chef/formatters/error_mapper.rb +2 -2
- data/lib/chef/formatters/minimal.rb +6 -5
- data/lib/chef/handler/slow_report.rb +66 -0
- data/lib/chef/handler.rb +46 -8
- data/lib/chef/http.rb +5 -5
- data/lib/chef/json_compat.rb +1 -1
- data/lib/chef/node.rb +20 -19
- data/lib/chef/policy_builder/policyfile.rb +88 -45
- data/lib/chef/provider/execute.rb +1 -1
- data/lib/chef/provider/file.rb +2 -2
- data/lib/chef/provider/group/dscl.rb +1 -1
- data/lib/chef/provider/launchd.rb +6 -6
- data/lib/chef/provider/lwrp_base.rb +1 -1
- data/lib/chef/provider/package/habitat.rb +168 -0
- data/lib/chef/provider/package/powershell.rb +5 -0
- data/lib/chef/provider/subversion.rb +4 -4
- data/lib/chef/provider/support/yum_repo.erb +1 -1
- data/lib/chef/provider/support/zypper_repo.erb +4 -2
- data/lib/chef/provider/systemd_unit.rb +17 -16
- data/lib/chef/provider/user/mac.rb +3 -3
- data/lib/chef/provider/yum_repository.rb +27 -43
- data/lib/chef/provider/zypper_repository.rb +30 -34
- data/lib/chef/provider.rb +26 -1
- data/lib/chef/provider_resolver.rb +8 -2
- data/lib/chef/providers.rb +1 -0
- data/lib/chef/resource/alternatives.rb +5 -5
- data/lib/chef/resource/apt_preference.rb +2 -2
- data/lib/chef/resource/apt_repository.rb +2 -2
- data/lib/chef/resource/apt_update.rb +4 -4
- data/lib/chef/resource/build_essential.rb +1 -1
- data/lib/chef/resource/chef_client_config.rb +10 -5
- data/lib/chef/resource/chef_client_cron.rb +3 -3
- data/lib/chef/resource/chef_client_launchd.rb +3 -3
- data/lib/chef/resource/chef_client_scheduled_task.rb +15 -15
- data/lib/chef/resource/chef_client_systemd_timer.rb +3 -3
- data/lib/chef/resource/chef_client_trusted_certificate.rb +2 -2
- data/lib/chef/resource/chef_handler.rb +2 -2
- data/lib/chef/resource/chef_sleep.rb +1 -1
- data/lib/chef/resource/chef_vault_secret.rb +2 -2
- data/lib/chef/resource/chocolatey_feature.rb +2 -2
- data/lib/chef/resource/chocolatey_source.rb +1 -1
- data/lib/chef/resource/cron/cron_d.rb +4 -6
- data/lib/chef/resource/cron_access.rb +1 -1
- data/lib/chef/resource/dmg_package.rb +1 -1
- data/lib/chef/resource/dsc_resource.rb +1 -1
- data/lib/chef/resource/execute.rb +5 -5
- data/lib/chef/resource/gem_package.rb +2 -1
- data/lib/chef/resource/group.rb +4 -4
- data/lib/chef/resource/habitat/_habitat_shared.rb +28 -0
- data/lib/chef/resource/habitat/habitat_package.rb +129 -0
- data/lib/chef/resource/habitat/habitat_sup.rb +329 -0
- data/lib/chef/resource/habitat/habitat_sup_systemd.rb +67 -0
- data/lib/chef/resource/habitat/habitat_sup_windows.rb +90 -0
- data/lib/chef/resource/habitat_config.rb +107 -0
- data/lib/chef/resource/habitat_install.rb +247 -0
- data/lib/chef/resource/habitat_service.rb +451 -0
- data/lib/chef/resource/habitat_user_toml.rb +92 -0
- data/lib/chef/resource/homebrew_cask.rb +18 -7
- data/lib/chef/resource/homebrew_package.rb +1 -1
- data/lib/chef/resource/homebrew_tap.rb +4 -3
- data/lib/chef/resource/homebrew_update.rb +2 -2
- data/lib/chef/resource/hostname.rb +49 -7
- data/lib/chef/resource/inspec_waiver_file_entry.rb +8 -7
- data/lib/chef/resource/kernel_module.rb +6 -6
- data/lib/chef/resource/launchd.rb +3 -3
- data/lib/chef/resource/locale.rb +1 -1
- data/lib/chef/resource/lwrp_base.rb +1 -1
- data/lib/chef/resource/macos_userdefaults.rb +2 -2
- data/lib/chef/resource/ohai_hint.rb +2 -6
- data/lib/chef/resource/openbsd_package.rb +17 -0
- data/lib/chef/resource/openssl_dhparam.rb +1 -2
- data/lib/chef/resource/openssl_ec_private_key.rb +1 -3
- data/lib/chef/resource/openssl_ec_public_key.rb +1 -3
- data/lib/chef/resource/openssl_rsa_private_key.rb +1 -3
- data/lib/chef/resource/openssl_rsa_public_key.rb +1 -3
- data/lib/chef/resource/openssl_x509_certificate.rb +1 -4
- data/lib/chef/resource/openssl_x509_crl.rb +1 -3
- data/lib/chef/resource/openssl_x509_request.rb +1 -3
- data/lib/chef/resource/osx_profile.rb +3 -3
- data/lib/chef/resource/plist.rb +1 -1
- data/lib/chef/resource/powershell_package_source.rb +2 -4
- data/lib/chef/resource/reboot.rb +38 -9
- data/lib/chef/resource/remote_directory.rb +2 -2
- data/lib/chef/resource/remote_file.rb +1 -1
- data/lib/chef/resource/rhsm_errata.rb +0 -2
- data/lib/chef/resource/rhsm_errata_level.rb +1 -5
- data/lib/chef/resource/rhsm_repo.rb +15 -0
- data/lib/chef/resource/rhsm_subscription.rb +5 -5
- data/lib/chef/resource/ruby_block.rb +100 -0
- data/lib/chef/resource/scm/subversion.rb +1 -1
- data/lib/chef/resource/ssh_known_hosts_entry.rb +4 -7
- data/lib/chef/resource/sudo.rb +2 -6
- data/lib/chef/resource/support/HabService.dll.config.erb +19 -0
- data/lib/chef/resource/support/client.erb +8 -1
- data/lib/chef/resource/support/sup.toml.erb +179 -0
- data/lib/chef/resource/swap_file.rb +2 -6
- data/lib/chef/resource/sysctl.rb +2 -2
- data/lib/chef/resource/systemd_unit.rb +3 -3
- data/lib/chef/resource/timezone.rb +1 -1
- data/lib/chef/resource/user_ulimit.rb +2 -2
- data/lib/chef/resource/windows_ad_join.rb +2 -2
- data/lib/chef/resource/windows_audit_policy.rb +2 -2
- data/lib/chef/resource/windows_auto_run.rb +2 -2
- data/lib/chef/resource/windows_certificate.rb +1 -1
- data/lib/chef/resource/windows_defender.rb +163 -0
- data/lib/chef/resource/windows_defender_exclusion.rb +125 -0
- data/lib/chef/resource/windows_dfs_folder.rb +2 -2
- data/lib/chef/resource/windows_dfs_namespace.rb +2 -2
- data/lib/chef/resource/windows_dns_record.rb +2 -2
- data/lib/chef/resource/windows_dns_zone.rb +2 -2
- data/lib/chef/resource/windows_feature.rb +3 -3
- data/lib/chef/resource/windows_feature_dism.rb +3 -5
- data/lib/chef/resource/windows_feature_powershell.rb +3 -3
- data/lib/chef/resource/windows_firewall_profile.rb +2 -2
- data/lib/chef/resource/windows_firewall_rule.rb +20 -6
- data/lib/chef/resource/windows_font.rb +1 -1
- data/lib/chef/resource/windows_pagefile.rb +103 -64
- data/lib/chef/resource/windows_path.rb +2 -2
- data/lib/chef/resource/windows_printer.rb +80 -61
- data/lib/chef/resource/windows_printer_port.rb +48 -65
- data/lib/chef/resource/windows_security_policy.rb +2 -2
- data/lib/chef/resource/windows_share.rb +2 -2
- data/lib/chef/resource/windows_shortcut.rb +1 -1
- data/lib/chef/resource/windows_task.rb +1 -1
- data/lib/chef/resource/windows_uac.rb +3 -5
- data/lib/chef/resource/windows_update_settings.rb +259 -0
- data/lib/chef/resource/windows_user_privilege.rb +2 -2
- data/lib/chef/resource/windows_workgroup.rb +2 -2
- data/lib/chef/resource/yum_package.rb +11 -15
- data/lib/chef/resource/zypper_package.rb +4 -4
- data/lib/chef/resource/zypper_repository.rb +28 -8
- data/lib/chef/resource.rb +13 -17
- data/lib/chef/resource_inspector.rb +6 -2
- data/lib/chef/resource_reporter.rb +0 -1
- data/lib/chef/resources.rb +12 -1
- data/lib/chef/secret_fetcher/aws_secrets_manager.rb +65 -0
- data/lib/chef/secret_fetcher/azure_key_vault.rb +78 -0
- data/lib/chef/secret_fetcher/base.rb +76 -0
- data/lib/chef/secret_fetcher/example.rb +46 -0
- data/lib/chef/secret_fetcher.rb +55 -0
- data/lib/chef/version.rb +1 -1
- data/spec/functional/mixin/from_file_spec.rb +1 -1
- data/spec/functional/resource/windows_hostname_spec.rb +91 -0
- data/spec/functional/resource/windows_pagefile_spec.rb +98 -0
- data/spec/integration/compliance/compliance_spec.rb +1 -0
- data/spec/integration/recipes/recipe_dsl_spec.rb +1 -1
- data/spec/integration/recipes/resource_action_spec.rb +6 -6
- data/spec/support/shared/unit/provider/file.rb +2 -8
- data/spec/unit/compliance/runner_spec.rb +46 -2
- data/spec/unit/cookbook_version_spec.rb +52 -0
- data/spec/unit/data_collector_spec.rb +47 -1
- data/spec/unit/dsl/render_helpers_spec.rb +102 -0
- data/spec/unit/dsl/secret_spec.rb +71 -0
- data/spec/unit/formatters/doc_spec.rb +1 -1
- data/spec/unit/handler_spec.rb +8 -2
- data/spec/unit/policy_builder/dynamic_spec.rb +0 -5
- data/spec/unit/policy_builder/policyfile_spec.rb +144 -56
- data/spec/unit/provider/apt_update_spec.rb +3 -1
- data/spec/unit/provider/mount/aix_spec.rb +1 -1
- data/spec/unit/provider/package/powershell_spec.rb +74 -12
- data/spec/unit/provider/zypper_repository_spec.rb +3 -10
- data/spec/unit/provider_spec.rb +23 -0
- data/spec/unit/resource/homebrew_cask_spec.rb +29 -11
- data/spec/unit/resource/rhsm_subscription_spec.rb +50 -3
- data/spec/unit/resource/systemd_unit_spec.rb +1 -1
- data/spec/unit/resource/windows_defender_exclusion_spec.rb +62 -0
- data/spec/unit/resource/windows_defender_spec.rb +71 -0
- data/spec/unit/resource/windows_firewall_rule_spec.rb +12 -7
- data/spec/unit/resource/windows_pagefile_spec.rb +4 -9
- data/spec/unit/resource/windows_update_settings_spec.rb +64 -0
- data/spec/unit/resource/zypper_repository_spec.rb +1 -1
- data/spec/unit/resource_spec.rb +19 -8
- data/spec/unit/secret_fetcher/aws_secrets_manager_spec.rb +70 -0
- data/spec/unit/secret_fetcher/azure_key_vault_spec.rb +70 -0
- data/spec/unit/secret_fetcher_spec.rb +82 -0
- metadata +55 -7
@@ -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
|
data/lib/chef/dsl/universal.rb
CHANGED
@@ -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
@@ -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
|
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.
|
data/lib/chef/exceptions.rb
CHANGED
@@ -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.
|
data/lib/chef/formatters/doc.rb
CHANGED
@@ -41,10 +41,11 @@ class Chef
|
|
41
41
|
end
|
42
42
|
|
43
43
|
def run_start(version, run_status)
|
44
|
-
puts_line "
|
44
|
+
puts_line "#{ChefUtils::Dist::Infra::PRODUCT}, version #{version}"
|
45
45
|
puts_line "Patents: #{ChefUtils::Dist::Org::PATENTS}"
|
46
|
-
puts_line "Targeting node: #{Chef::Config.target_mode.host}" if Chef::Config.target_mode?
|
47
46
|
puts_line "OpenSSL FIPS 140 mode enabled" if Chef::Config[:fips]
|
47
|
+
puts_line "Infra Phase starting"
|
48
|
+
puts_line "Targeting node: #{Chef::Config.target_mode.host}" if Chef::Config.target_mode?
|
48
49
|
end
|
49
50
|
|
50
51
|
def total_resources
|
@@ -79,18 +80,18 @@ class Chef
|
|
79
80
|
puts_line ""
|
80
81
|
end
|
81
82
|
if Chef::Config[:why_run]
|
82
|
-
puts_line "
|
83
|
+
puts_line "Infra Phase complete, #{@updated_resources}/#{total_resources} resources would have been updated"
|
83
84
|
else
|
84
|
-
puts_line "
|
85
|
+
puts_line "Infra Phase complete, #{@updated_resources}/#{total_resources} resources updated in #{pretty_elapsed_time}"
|
85
86
|
end
|
86
87
|
end
|
87
88
|
|
88
89
|
def run_failed(exception)
|
89
90
|
@end_time = Time.now
|
90
91
|
if Chef::Config[:why_run]
|
91
|
-
puts_line "
|
92
|
+
puts_line "Infra Phase failed. #{@updated_resources} resources would have been updated"
|
92
93
|
else
|
93
|
-
puts_line "
|
94
|
+
puts_line "Infra Phase failed. #{@updated_resources} resources updated in #{pretty_elapsed_time}"
|
94
95
|
end
|
95
96
|
end
|
96
97
|
|
@@ -119,12 +120,12 @@ class Chef
|
|
119
120
|
def node_load_completed(node, expanded_run_list, config); end
|
120
121
|
|
121
122
|
def policyfile_loaded(policy)
|
122
|
-
puts_line "Using
|
123
|
+
puts_line "Using Policyfile '#{policy["name"]}' at revision '#{policy["revision_id"]}'"
|
123
124
|
end
|
124
125
|
|
125
126
|
# Called before the cookbook collection is fetched from the server.
|
126
127
|
def cookbook_resolution_start(expanded_run_list)
|
127
|
-
puts_line "
|
128
|
+
puts_line "Resolving cookbooks for run list: #{expanded_run_list.inspect}"
|
128
129
|
end
|
129
130
|
|
130
131
|
# Called when there is an error getting the cookbook collection from the
|
@@ -149,7 +150,7 @@ class Chef
|
|
149
150
|
|
150
151
|
# Called before cookbook sync starts
|
151
152
|
def cookbook_sync_start(cookbook_count)
|
152
|
-
puts_line "Synchronizing
|
153
|
+
puts_line "Synchronizing cookbooks:"
|
153
154
|
indent
|
154
155
|
end
|
155
156
|
|
@@ -168,7 +169,7 @@ class Chef
|
|
168
169
|
|
169
170
|
# Called when starting to collect gems from the cookbooks
|
170
171
|
def cookbook_gem_start(gems)
|
171
|
-
puts_line "Installing
|
172
|
+
puts_line "Installing cookbook gem dependencies:"
|
172
173
|
indent
|
173
174
|
end
|
174
175
|
|
@@ -194,7 +195,7 @@ class Chef
|
|
194
195
|
|
195
196
|
# Called when cookbook loading starts.
|
196
197
|
def library_load_start(file_count)
|
197
|
-
puts_line "Compiling
|
198
|
+
puts_line "Compiling cookbooks..."
|
198
199
|
end
|
199
200
|
|
200
201
|
# Called after a file in a cookbook is loaded.
|
@@ -280,7 +281,7 @@ class Chef
|
|
280
281
|
end
|
281
282
|
|
282
283
|
def resource_bypassed(resource, action, provider)
|
283
|
-
puts " (Skipped:
|
284
|
+
puts " (Skipped: Why-Run not supported by provider #{provider.class.name})", stream: resource
|
284
285
|
unindent
|
285
286
|
end
|
286
287
|
|
@@ -317,7 +318,7 @@ class Chef
|
|
317
318
|
# Called when resource current state load is skipped due to the provider
|
318
319
|
# not supporting whyrun mode.
|
319
320
|
def resource_current_state_load_bypassed(resource, action, current_resource)
|
320
|
-
puts_line("*
|
321
|
+
puts_line("* Why-Run not supported for #{resource}, bypassing load.", :yellow)
|
321
322
|
end
|
322
323
|
|
323
324
|
def stream_output(stream, output, options = {})
|
@@ -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
|
@@ -28,20 +28,21 @@ class Chef
|
|
28
28
|
|
29
29
|
# Called at the very start of a Chef Run
|
30
30
|
def run_start(version, run_status)
|
31
|
-
puts_line "
|
31
|
+
puts_line "#{ChefUtils::Dist::Infra::PRODUCT}, version #{version}"
|
32
32
|
puts_line "Patents: #{ChefUtils::Dist::Org::PATENTS}"
|
33
|
-
puts_line "Targeting node: #{Chef::Config.target_mode.host}" if Chef::Config.target_mode?
|
34
33
|
puts_line "OpenSSL FIPS 140 mode enabled" if Chef::Config[:fips]
|
34
|
+
puts_line "Infra Phase starting"
|
35
|
+
puts_line "Targeting node: #{Chef::Config.target_mode.host}" if Chef::Config.target_mode?
|
35
36
|
end
|
36
37
|
|
37
38
|
# Called at the end of the Chef run.
|
38
39
|
def run_completed(node)
|
39
|
-
puts "
|
40
|
+
puts "Infra phase complete, #{@updated_resources.size} resources updated"
|
40
41
|
end
|
41
42
|
|
42
43
|
# called at the end of a failed run
|
43
44
|
def run_failed(exception)
|
44
|
-
puts "
|
45
|
+
puts "Infra phase failed. #{@updated_resources.size} resources updated"
|
45
46
|
end
|
46
47
|
|
47
48
|
# Called right after ohai runs.
|
@@ -71,7 +72,7 @@ class Chef
|
|
71
72
|
|
72
73
|
# Called before the cookbook collection is fetched from the server.
|
73
74
|
def cookbook_resolution_start(expanded_run_list)
|
74
|
-
puts "
|
75
|
+
puts "Resolving cookbooks for run list: #{expanded_run_list.inspect}"
|
75
76
|
end
|
76
77
|
|
77
78
|
# Called when there is an error getting the cookbook collection from the
|
@@ -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
|