Sha256: 47df0e7af140cfbaa08d29d25289e542444b3b64b4f9b626462b1635ff602004

Contents?: true

Size: 1.99 KB

Versions: 1

Compression:

Stored size: 1.99 KB

Contents

# -*- encoding: utf-8 -*-
#
# Author:: Fletcher Nichol (<fnichol@nichol.ca>)
#
# Copyright (C) 2013, Fletcher Nichol
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require 'kitchen/provisioner/chef_base'

module Kitchen

  module Provisioner

    # Chef Solo provisioner.
    #
    # @author Fletcher Nichol <fnichol@nichol.ca>
    class ChefSolo < ChefBase

      def create_sandbox
        create_chef_sandbox { prepare_solo_rb }
      end

      def run_command
        [
          sudo('chef-solo'),
          "--config #{home_path}/solo.rb",
          "--json-attributes #{home_path}/dna.json",
          config[:log_file] ? "--logfile #{config[:log_file]}" : nil,
          "--log_level #{config[:log_level]}"
        ].join(" ")
      end

      def home_path
        "/tmp/kitchen-chef-solo".freeze
      end

      private

      def prepare_solo_rb
        solo = []
        solo << %{node_name "#{instance.name}"}
        solo << %{file_cache_path "#{home_path}/cache"}
        solo << %{cookbook_path "#{home_path}/cookbooks"}
        solo << %{role_path "#{home_path}/roles"}
        if instance.suite.data_bags_path
          solo << %{data_bag_path "#{home_path}/data_bags"}
        end
        if instance.suite.encrypted_data_bag_secret_key_path
          secret = "#{home_path}/encrypted_data_bag_secret"
          solo << %{encrypted_data_bag_secret "#{secret}"}
        end

        File.open(File.join(tmpdir, "solo.rb"), "wb") do |file|
          file.write(solo.join("\n"))
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
test-kitchen-1.0.0.beta.3 lib/kitchen/provisioner/chef_solo.rb