在自定义食谱中找不到LWRP

时间:2015-06-05 19:05:27

标签: chef cookbook

我正在构建一个安装我的节点js文件的cookbook,然后为它们设置initd脚本。不幸的是,我不能在食谱中调用非默认的LWRP。

以下是来自Chef-client run的错误:

 26>> blah_node_as_service 'setting up pricing service' do
 27:      directory '/var/blah/blah-pricing/'
 28:      script 'pricing-http-server-cluster.js'
 29:      resource_name 'blah-pricing' 
 30:  end
 31:  

Running handlers:
[2015-06-05T14:57:40-04:00] ERROR: Running exception handlers
Running handlers complete
[2015-06-05T14:57:40-04:00] ERROR: Exception handlers complete
[2015-06-05T14:57:40-04:00] FATAL: Stacktrace dumped to /var/chef/cache/chef-stacktrace.out
Chef Client failed. 0 resources updated in 1.961443247 seconds
[2015-06-05T14:57:40-04:00] ERROR: No resource or method named `frt_node_as_service' for `Chef::Recipe "default"'
[2015-06-05T14:57:40-04:00] FATAL: Chef::Exceptions::ChildConvergeError: Chef run process exited unsuccessfully (exit code 1)

以下是食谱中的关键文件。

blah@blah:~/chef-repo/cookbooks/blah-deploy$ ls resources/
default.rb  blahNodeAsService.rb

blah@blah:~/chef-repo/cookbooks/blah-deploy$ cat resources/blahNodeAsService.rb 
actions :install

default_action :install if defined?(default_action)

attribute :script, :kind_of => String, :required => true
attribute :directory, :kind_of => String, :required => true
attribute :resource_name, :kind_of => String, :required => true

blah@blah:~/chef-repo/cookbooks/blah-deploy$ cat providers/blahNodeAsService.rb 
use_inline_resources

action :install do

    converge_by("Installing.") do
      resp = setUpService
      @new_resource.updated_by_last_action(resp)  
    end

end



def load_current_resource

  @current_resource = Chef::Resource::BlahNodeAsService.new(@new_resource.name)
  @current_resource.directory(@new_resource.directory)
  @current_resource.script(@new_resource.script)
  @current_resource.resource_name(@new_resource.resource_name)

end

def setUpService
end

该服务的食谱已经包含了该食谱,该食谱中的默认LWRP(default.rb)工作正常。这是第二个无法找到的LWRP。

谢谢

1 个答案:

答案 0 :(得分:3)

事实证明,您使用cookbook名称和LWRP资源名称的组合来引用LWRP:

<cookbook-name>_<resource-name>

在上面的案例中:

blah_deploy_blah_node_as_service

所以看起来我应该更好地命名,但它至少有效。