私はchef-server 11を使用し、chef-provisioning gemを使用してクラウドインフラストラクチャを自動化しています。AMI からインスタンスを作成する簡単なレシピがありますが、ArgumentError 不明なディレクティブ: "\n" エラーで失敗します
私のシェフのレシピは
require 'chef/provisioning/aws_driver'
with_driver 'aws::us-east-1'
machine 'new-chef-instance'
do
machine_options :ssh_username => 'root',
:bootstrap_options =>
{
:key_name => 'mykeyname',
:image_id => 'myamiid',
:instance_type => 't2.micro',
:subnet_id => 'mysubnetid',
:security_group_ids => 'my-security-group'
}
end
このレシピをこのように実行した後
chef-client -z recipes/createserver.rb
インスタンスの作成後に次のエラーが表示されます
[2015-08-24T11:42:17+00:00] INFO: Processing chef_node[new-chef-provision] action create (basic_chef_client::block line 57)
================================================================================
Error executing action `converge` on resource 'machine[new-chef-instance]'
================================================================================
ArgumentError
-------------
unknown directive: "\n"
Resource Declaration:
---------------------
# In /mypath/recipes/createserver.rb'
[2015-08-24T11:42:27+00:00] INFO: Running queued delayed notifications before re-raising exception
Running handlers:
[2015-08-24T11:42:27+00:00] ERROR: Running exception handlers
Running handlers complete
[2015-08-24T11:42:27+00:00] ERROR: Exception handlers complete
[2015-08-24T11:42:27+00:00] FATAL: Stacktrace dumped to /root/.chef/local-mode-cache/cache/chef-stacktrace.out
Chef Client failed. 0 resources updated in 268.92955968 seconds
[2015-08-24T11:42:27+00:00] ERROR: machine[new-chef-provision] (@recipe_files::/mypath/recipes/createserver.rb line 3) had an error: ArgumentError: unknown directive: "\n"
[2015-08-24T11:42:28+00:00] FATAL: Chef::Exceptions::ChildConvergeError: Chef run process exited unsuccessfully (exit code 1)
インスタンスは適切に作成され、コマンド ラインから SSH 接続できますが、完全なレシピの実行は失敗します。