Secara default, chef-solo
baca konfigurasinya dari /etc/chef/solo.rb
. Parameter baris perintah sesuai dengan nilai konfigurasi yang dapat diatur dalam file ini. Ini dilakukan menggunakan pustaka mixlib-config.
option :config_file,
:short => "-c CONFIG",
:long => "--config CONFIG",
:default => "/etc/chef/solo.rb",
:description => "The configuration file to use"
option :json_attribs,
:short => "-j JSON_ATTRIBS",
:long => "--json-attributes JSON_ATTRIBS",
:description => "Load attributes from a JSON file or URL",
:proc => nil
option :recipe_url,
:short => "-r RECIPE_URL",
:long => "--recipe-url RECIPE_URL",
:description => "Pull down a remote gzipped tarball of recipes and untar it to the cookbook ca
che.",
:proc => nil
'Opsi' adalah nilai file konfigurasi.
File konfigurasi aktual, /etc/chef/solo.rb
akan terlihat seperti:
file_cache_path "/tmp/chef-solo"
cookbook_path "/tmp/chef-solo/cookbooks"
role_path "/tmp/chef-solo/roles"
json_attribs "/tmp/chef-solo/node.json"
recipe_url "http://www.example.com/chef-solo.tar.gz"
Perhatikan juga bahwa file JSON dapat berupa URL jarak jauh juga.
json_attribs "http://www.example.com/node.json"
Anda dapat menggunakan Ohai sebagai perpustakaan di dalam file konfigurasi juga, untuk mendeteksi platform atau atribut lainnya untuk menentukan file JSON apa yang akan digunakan.
require 'rubygems'
require 'ohai'
o = Ohai::System.new
o.all_plugins
file_cache_path "/tmp/chef-solo"
cookbook_path "/tmp/chef-solo/cookbooks"
role_path "/tmp/chef-solo/roles"
json_attribs "/tmp/chef-solo/#{o[:platform]}.json"
recipe_url "http://www.example.com/chef-solo.tar.gz"
Dan kemudian Anda akan memiliki "platform" file JSON tertentu, misalnya. Atau Anda bisa menggunakan o[:hostname]
, o[:domain]
atau o[:fqdn]
menggunakan file JSON berdasarkan nama host, domain atau fqdn. Tetapi begitu Anda mulai memiliki perancah server untuk mendukung konfigurasi dinamis semacam ini, Anda mungkin akan melihat menjalankan Server Chef :-).