Class: Kitchen::Provisioner::ChefSolo

Inherits:
ChefBase show all
Defined in:
lib/kitchen/provisioner/chef_solo.rb

Overview

Chef Solo provisioner.

Author:

Instance Attribute Summary

Attributes included from Configurable

#instance

Instance Method Summary collapse

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_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?

Constructor Details

This class inherits a constructor from Kitchen::Provisioner::ChefBase

Instance Method Details

#config_filenameObject



39
40
41
# File 'lib/kitchen/provisioner/chef_solo.rb', line 39

def config_filename
  "solo.rb"
end

#create_sandboxObject

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:

Examples:

overriding ‘#create_sandbox`


class MyProvisioner < Kitchen::Provisioner::Base
  def create_sandbox
    super
    # any further file copies, preparations, etc.
  end
end


44
45
46
47
# File 'lib/kitchen/provisioner/chef_solo.rb', line 44

def create_sandbox
  super
  prepare_config_rb
end

#run_commandString

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.

Returns:

  • (String)

    a command string



50
51
52
53
54
55
# File 'lib/kitchen/provisioner/chef_solo.rb', line 50

def run_command
  cmd = sudo(config[:chef_solo_path]).dup
    .tap { |str| str.insert(0, "& ") if powershell_shell? }

  chef_cmd(cmd)
end