Varsayılan olarak, chef-solo
yapılandırmasını şuradan okur /etc/chef/solo.rb
. Komut satırı parametreleri, bu dosyada ayarlanabilen yapılandırma değerlerine karşılık gelir. Bu, mixlib-config kütüphanesi kullanılarak yapılır.
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
'Seçenek' yapılandırma dosyası değeridir.
Gerçek yapılandırma dosyası /etc/chef/solo.rb
şöyle görünecektir:
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"
JSON dosyasının da uzak bir URL olabileceğini unutmayın.
json_attribs "http://www.example.com/node.json"
Hangi JSON dosyasının kullanılacağını belirtmek için platformu veya diğer öznitelikleri algılamak için Ohai'yi yapılandırma dosyası içinde bir kitaplık olarak da kullanabilirsiniz.
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"
Ve sonra, örneğin, platforma özel JSON dosyalarınız olacaktır. Yoksa kullanabilirsiniz o[:hostname]
, o[:domain]
ya da o[:fqdn]
ana bilgisayar adı, etki alanı veya FQDN dayalı JSON dosyaları kullanmak. Ancak bu tür bir dinamik yapılandırmayı desteklemek için sunucuların iskelesine sahip olduğunuzda, bir Chef Server :-) çalıştırmaya bakabilirsiniz.