如何将 chef-client 日志输出捕获到厨房 运行 中的文件?

How can I capture chef-client log output to a file in a kitchen run?

我正在尝试配置 chef-client 以将日志输出到测试厨房中的文件 运行,但我在 .kitchen.yml 中的配置似乎没有反映在 client.rb准备并注入测试节点。

我正在使用 ChefDK 0.3.6,chef_zero virtualbox 上的配置器和 vagrant 驱动程序。

我的 .kitchen.yml 文件的摘录:

...
provisioner:
  name: chef_zero
...
- name: install-only
    run_list:
    - recipe[my_cookbook::test_recipe]
    attributes:
      chef_client:
        config:
          log_location: "/var/log/chef/chef-client.log"
...

另一个摘录,来自 kitchen diagnose 的输出:

...
provisioner:
  attributes:
    chef_client:
      config:
        log_location: "/var/log/chef/chef-client.log"
  chef_client_path: "/opt/chef/bin/chef-client"
  chef_omnibus_install_options: 
  chef_omnibus_root: "/opt/chef"
...

最后,测试节点上/tmp/kitchen/client.rb的内容:

[root@TRSTWPRTSTAPV99 log]# cat /tmp/kitchen/client.rb 
node_name "install-only-rhel65-x86-64"
checksum_path "/tmp/kitchen/checksums"
file_cache_path "/tmp/kitchen/cache"
file_backup_path "/tmp/kitchen/backup"
cookbook_path ["/tmp/kitchen/cookbooks", "/tmp/kitchen/site-cookbooks"]
data_bag_path "/tmp/kitchen/data_bags"
environment_path "/tmp/kitchen/environments"
node_path "/tmp/kitchen/nodes"
role_path "/tmp/kitchen/roles"
client_path "/tmp/kitchen/clients"
user_path "/tmp/kitchen/users"
validation_key "/tmp/kitchen/validation.pem"
client_key "/tmp/kitchen/client.pem"
chef_server_url "http://127.0.0.1:8889"
encrypted_data_bag_secret "/tmp/kitchen/encrypted_data_bag_secret"

如您所见,预期的 log_location 条目未包含在 client.rb 中,我猜这就是为什么没有在指定路径中创建日志文件的原因。

能否请您帮助我了解如何在厨房中通过 chef-client 正确启用记录到文件?

目前使用的参考资料:

  1. client.rb参考:https://docs.chef.io/config_rb_client.html
  2. .kitchen.yml 中的 chef-client 特定设置:https://docs.chef.io/config_yml_kitchen.html#chef-client-specific-settings

根据chef-zero provisionner doc and reading the provisioner code

它没有考虑属性,这听起来合乎逻辑,因为它们是现实世界中食谱所使用的属性。

可以做什么(我认为从代码中)是在 chef_omnibus_url(上面的供应商代码的第 42 行)的供应商定义中定义一个 log_file

你 .kitche.yml 可能会成为:

...
provisioner:
  name: chef_zero
  log_file: "/var/log/chef/chef-client.log"
...
- name: install-only
    run_list:
    - recipe[my_cookbook::test_recipe]
...

...
provisioner:
  name: chef_zero
...
- name: install-only
    run_list:
    - recipe[chef-client::config]
    - recipe[my_cookbook::test_recipe]
attributes:
  chef_client:
    config:
      log_location: "/var/log/chef/chef-client.log"
...

如果您确实使用 chef_client 食谱在您的节点上配置 Chef,我会将其包含在运行列表中以尽可能接近现实。