Class: Chef::Knife::Core::BootstrapContext
- Inherits:
-
Object
- Object
- Chef::Knife::Core::BootstrapContext
- Defined in:
- lib/chef/knife/core/bootstrap_context.rb
Overview
Instances of BootstrapContext are the context objects (i.e., self
) for bootstrap templates. For backwards compatibility, they must
set the following instance variables:
-
@config - a hash of knife’s config values
-
@run_list - the run list for the node to boostrap
Instance Attribute Summary collapse
-
#client_pem ⇒ Object
Returns the value of attribute client_pem.
Instance Method Summary collapse
- #bootstrap_environment ⇒ Object
- #client_d ⇒ Object
- #config_content ⇒ Object
- #encrypted_data_bag_secret ⇒ Object
- #first_boot ⇒ Object
-
#initialize(config, run_list, chef_config, secret = nil) ⇒ BootstrapContext
constructor
A new instance of BootstrapContext.
- #knife_config ⇒ Object
-
#latest_current_chef_version_string ⇒ Object
chef version string to fetch the latest current version from omnitruck If user is on X.Y.Z bootstrap will use the latest X release X here can be 10 or 11.
- #start_chef ⇒ Object
-
#trusted_certs ⇒ Object
Contains commands and content, see trusted_certs_content TODO: Rename to trusted_certs_script.
- #validation_key ⇒ Object
Constructor Details
#initialize(config, run_list, chef_config, secret = nil) ⇒ BootstrapContext
Returns a new instance of BootstrapContext.
36 37 38 39 40 41 |
# File 'lib/chef/knife/core/bootstrap_context.rb', line 36 def initialize(config, run_list, chef_config, secret = nil) @config = config @run_list = run_list @chef_config = chef_config @secret = secret end |
Instance Attribute Details
#client_pem ⇒ Object
Returns the value of attribute client_pem.
34 35 36 |
# File 'lib/chef/knife/core/bootstrap_context.rb', line 34 def client_pem @client_pem end |
Instance Method Details
#bootstrap_environment ⇒ Object
43 44 45 |
# File 'lib/chef/knife/core/bootstrap_context.rb', line 43 def bootstrap_environment @config[:environment] end |
#client_d ⇒ Object
56 57 58 |
# File 'lib/chef/knife/core/bootstrap_context.rb', line 56 def client_d @cliend_d ||= client_d_content end |
#config_content ⇒ Object
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/chef/knife/core/bootstrap_context.rb', line 70 def config_content client_rb = <<-CONFIG log_location STDOUT chef_server_url "#{@chef_config[:chef_server_url]}" validation_client_name "#{@chef_config[:validation_client_name]}" CONFIG if @config[:chef_node_name] client_rb << %Q{node_name "#{@config[:chef_node_name]}"\n} else client_rb << "# Using default node name (fqdn)\n" end # We configure :verify_api_cert only when it's overridden on the CLI # or when specified in the knife config. if !@config[:node_verify_api_cert].nil? || knife_config.has_key?(:verify_api_cert) value = @config[:node_verify_api_cert].nil? ? knife_config[:verify_api_cert] : @config[:node_verify_api_cert] client_rb << %Q{verify_api_cert #{value}\n} end # We configure :ssl_verify_mode only when it's overridden on the CLI # or when specified in the knife config. if @config[:node_ssl_verify_mode] || knife_config.has_key?(:ssl_verify_mode) value = case @config[:node_ssl_verify_mode] when "peer" :verify_peer when "none" :verify_none when nil knife_config[:ssl_verify_mode] else nil end if value client_rb << %Q{ssl_verify_mode :#{value}\n} end end if @config[:ssl_verify_mode] client_rb << %Q{ssl_verify_mode :#{knife_config[:ssl_verify_mode]}\n} end if knife_config[:bootstrap_proxy] client_rb << %Q{http_proxy "#{knife_config[:bootstrap_proxy]}"\n} client_rb << %Q{https_proxy "#{knife_config[:bootstrap_proxy]}"\n} end if knife_config[:bootstrap_no_proxy] client_rb << %Q{no_proxy "#{knife_config[:bootstrap_no_proxy]}"\n} end if encrypted_data_bag_secret client_rb << %Q{encrypted_data_bag_secret "/etc/chef/encrypted_data_bag_secret"\n} end unless trusted_certs.empty? client_rb << %Q{trusted_certs_dir "/etc/chef/trusted_certs"\n} end if Chef::Config[:fips] client_rb << <<-CONFIG fips true chef_version = ::Chef::VERSION.split(".") unless chef_version[0].to_i > 12 || (chef_version[0].to_i == 12 && chef_version[1].to_i >= 8) raise "FIPS Mode requested but not supported by this client" end CONFIG end client_rb end |
#encrypted_data_bag_secret ⇒ Object
60 61 62 |
# File 'lib/chef/knife/core/bootstrap_context.rb', line 60 def encrypted_data_bag_secret @secret end |
#first_boot ⇒ Object
182 183 184 185 186 187 188 189 190 191 192 193 |
# File 'lib/chef/knife/core/bootstrap_context.rb', line 182 def first_boot (@config[:first_boot_attributes] || {}).tap do |attributes| if @config[:policy_name] && @config[:policy_group] attributes[:policy_name] = @config[:policy_name] attributes[:policy_group] = @config[:policy_group] else attributes[:run_list] = @run_list end attributes.merge!(:tags => @config[:tags]) if @config[:tags] && !@config[:tags].empty? end end |
#knife_config ⇒ Object
152 153 154 |
# File 'lib/chef/knife/core/bootstrap_context.rb', line 152 def knife_config @chef_config.key?(:knife) ? @chef_config[:knife] : {} end |
#latest_current_chef_version_string ⇒ Object
chef version string to fetch the latest current version from omnitruck If user is on X.Y.Z bootstrap will use the latest X release X here can be 10 or 11
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'lib/chef/knife/core/bootstrap_context.rb', line 160 def latest_current_chef_version_string installer_version_string = nil if @config[:prerelease] installer_version_string = ["-p"] else chef_version_string = if knife_config[:bootstrap_version] knife_config[:bootstrap_version] else Chef::VERSION.split(".").first end installer_version_string = ["-v", chef_version_string] # If bootstrapping a pre-release version add -p to the installer string if chef_version_string.split(".").length > 3 installer_version_string << "-p" end end installer_version_string.join(" ") end |
#start_chef ⇒ Object
142 143 144 145 146 147 148 149 150 |
# File 'lib/chef/knife/core/bootstrap_context.rb', line 142 def start_chef # If the user doesn't have a client path configure, let bash use the PATH for what it was designed for client_path = @chef_config[:chef_client_path] || "chef-client" s = "#{client_path} -j /etc/chef/first-boot.json" s << " -l debug" if @config[:verbosity] and @config[:verbosity] >= 2 s << " -E #{bootstrap_environment}" unless bootstrap_environment.nil? s << " --no-color" unless @config[:color] s end |
#trusted_certs ⇒ Object
Contains commands and content, see trusted_certs_content TODO: Rename to trusted_certs_script
66 67 68 |
# File 'lib/chef/knife/core/bootstrap_context.rb', line 66 def trusted_certs @trusted_certs ||= trusted_certs_content end |
#validation_key ⇒ Object
47 48 49 50 51 52 53 54 |
# File 'lib/chef/knife/core/bootstrap_context.rb', line 47 def validation_key if @chef_config.has_key?(:validation_key) && File.exist?(File.(@chef_config[:validation_key])) IO.read(File.(@chef_config[:validation_key])) else false end end |