vagrant/plugins/provisioners/chef/provisioner/chef_client.rb

121 lines
4.1 KiB
Ruby
Raw Normal View History

2012-04-19 04:53:19 +00:00
require 'pathname'
require 'vagrant/util/subprocess'
2012-04-19 04:53:19 +00:00
require File.expand_path("../base", __FILE__)
module VagrantPlugins
module Chef
module Provisioner
# This class implements provisioning via chef-client, allowing provisioning
# with a chef server.
class ChefClient < Base
2013-01-14 00:41:32 +00:00
def configure(root_config)
raise ChefError, :server_validation_key_required if @config.validation_key_path.nil?
2012-04-19 04:53:19 +00:00
raise ChefError, :server_validation_key_doesnt_exist if !File.file?(validation_key_path)
2013-01-14 00:41:32 +00:00
raise ChefError, :server_url_required if @config.chef_server_url.nil?
2012-04-19 04:53:19 +00:00
end
def provision
2012-04-19 04:53:19 +00:00
verify_binary(chef_binary_path("chef-client"))
chown_provisioning_folder
create_client_key_folder
upload_validation_key
upload_encrypted_data_bag_secret
2012-04-19 04:53:19 +00:00
setup_json
setup_server_config
run_chef_client
delete_encrypted_data_bag_secret
2012-04-19 04:53:19 +00:00
end
def cleanup
delete_from_chef_server('client') if @config.delete_client
delete_from_chef_server('node') if @config.delete_node
end
2012-04-19 04:53:19 +00:00
def create_client_key_folder
2014-04-19 06:48:05 +00:00
@machine.ui.info I18n.t("vagrant.provisioners.chef.client_key_folder")
2013-01-14 00:41:32 +00:00
path = Pathname.new(@config.client_key_path)
2012-04-19 04:53:19 +00:00
2013-01-14 00:41:32 +00:00
@machine.communicate.sudo("mkdir -p #{path.dirname}")
2012-04-19 04:53:19 +00:00
end
def upload_validation_key
2014-04-19 06:48:05 +00:00
@machine.ui.info I18n.t("vagrant.provisioners.chef.upload_validation_key")
2013-01-14 00:41:32 +00:00
@machine.communicate.upload(validation_key_path, guest_validation_key_path)
2012-04-19 04:53:19 +00:00
end
def setup_server_config
setup_config("provisioners/chef_client/client", "client.rb", {
2013-01-14 00:41:32 +00:00
:chef_server_url => @config.chef_server_url,
:validation_client_name => @config.validation_client_name,
2012-04-19 04:53:19 +00:00
:validation_key => guest_validation_key_path,
2013-01-14 00:41:32 +00:00
:client_key => @config.client_key_path,
2012-04-19 04:53:19 +00:00
})
end
def run_chef_client
if @config.run_list && @config.run_list.empty?
@machine.ui.warn(I18n.t("vagrant.chef_run_list_empty"))
end
if @machine.guest.capability?(:wait_for_reboot)
@machine.guest.capability(:wait_for_reboot)
end
command = build_command(:client)
2012-04-19 04:53:19 +00:00
2013-01-14 00:41:32 +00:00
@config.attempts.times do |attempt|
2012-04-19 04:53:19 +00:00
if attempt == 0
2014-04-19 06:48:05 +00:00
@machine.ui.info I18n.t("vagrant.provisioners.chef.running_client")
2012-04-19 04:53:19 +00:00
else
2014-04-19 06:48:05 +00:00
@machine.ui.info I18n.t("vagrant.provisioners.chef.running_client_again")
2012-04-19 04:53:19 +00:00
end
opts = { error_check: false, elevated: true }
exit_status = @machine.communicate.sudo(command, opts) do |type, data|
2012-04-19 04:53:19 +00:00
# Output the data with the proper color based on the stream.
color = type == :stdout ? :green : :red
2014-04-19 06:48:05 +00:00
data = data.chomp
next if data.empty?
@machine.ui.info(data, :color => color)
2012-04-19 04:53:19 +00:00
end
# There is no need to run Chef again if it converges
return if exit_status == 0
end
# If we reached this point then Chef never converged! Error.
raise ChefError, :no_convergence
end
def validation_key_path
2013-01-14 00:41:32 +00:00
File.expand_path(@config.validation_key_path, @machine.env.root_path)
2012-04-19 04:53:19 +00:00
end
def guest_validation_key_path
2013-01-14 00:41:32 +00:00
File.join(@config.provisioning_path, "validation.pem")
2012-04-19 04:53:19 +00:00
end
def delete_from_chef_server(deletable)
node_name = @config.node_name || @machine.config.vm.hostname
2014-04-19 06:48:05 +00:00
@machine.ui.info(I18n.t(
"vagrant.provisioners.chef.deleting_from_server",
deletable: deletable, name: node_name))
command = ["knife", deletable, "delete", "--yes", node_name]
r = Vagrant::Util::Subprocess.execute(*command)
if r.exit_code != 0
2014-04-19 06:48:05 +00:00
@machine.ui.error(I18n.t(
"vagrant.chef_client_cleanup_failed",
deletable: deletable,
stdout: r.stdout,
stderr: r.stderr))
end
end
2012-04-19 04:53:19 +00:00
end
end
end
end