Class: Kitchen::Provisioner::ChefSolo
- Inherits:
-
ChefBase
- Object
- Kitchen::Plugin::Base
- Base
- ChefBase
- Kitchen::Provisioner::ChefSolo
- Defined in:
- lib/kitchen/provisioner/chef_solo.rb
Overview
Chef Solo provisioner.
Instance Attribute Summary
Attributes included from Configurable
Instance Method Summary collapse
- #config_filename ⇒ Object
-
#create_sandbox ⇒ Object
Creates a temporary directory on the local workstation into which provisioner related files and directories can be copied or created.
-
#run_command ⇒ String
Generates a command string which will invoke the main provisioner command on the prepared instance.
Methods inherited from ChefBase
#check_license, #doctor, #init_command, #initialize, #install_command, #license_acceptance_id, #product_version
Methods inherited from Base
#call, #check_license, #cleanup_sandbox, #doctor, #init_command, #initialize, #install_command, kitchen_provisioner_api_version, #prepare_command, #sandbox_dirs, #sandbox_path
Methods included from Logging
#banner, #debug, #error, #fatal, #info, #warn
Methods included from Configurable
#[], #bourne_shell?, #calculate_path, #config_keys, #diagnose, #diagnose_plugin, #finalize_config!, included, #name, #powershell_shell?, #remote_path_join, #unix_os?, #verify_dependencies, #windows_os?
Methods inherited from Kitchen::Plugin::Base
Constructor Details
This class inherits a constructor from Kitchen::Provisioner::ChefBase
Instance Method Details
#config_filename ⇒ Object
43 44 45 |
# File 'lib/kitchen/provisioner/chef_solo.rb', line 43 def config_filename "solo.rb" end |
#create_sandbox ⇒ Object
Creates a temporary directory on the local workstation into which provisioner related files and directories can be copied or created. The contents of this directory will be copied over to the instance before invoking the provisioner’s run command. After this method completes, it is expected that the contents of the sandbox is complete and ready for copy to the remote instance.
Note: any subclasses would be well advised to call super first when overriding this method, for example:
48 49 50 51 |
# File 'lib/kitchen/provisioner/chef_solo.rb', line 48 def create_sandbox super prepare_config_rb end |
#run_command ⇒ String
Generates a command string which will invoke the main provisioner command on the prepared instance. If no work is required, then ‘nil` will be returned.
54 55 56 57 58 59 |
# File 'lib/kitchen/provisioner/chef_solo.rb', line 54 def run_command cmd = sudo(config[:chef_solo_path]).dup .tap { |str| str.insert(0, "& ") if powershell_shell? } chef_cmd(cmd) end |