📅  最后修改于: 2020-11-02 03:28:36             🧑  作者: Mango
轻量级资源提供程序(LWRP)提供了通过扩展功能来扩展可用资源列表的选项,并允许Chef用户创建自定义资源。
通过创建自定义资源,人们可以简单地编写食谱,因为可以使用Chef DSL来拥有丰富的自定义资源,这有助于使配方代码更具表现力。
在Chef社区中,许多自定义资源都是使用LWRP实现的。 LWRP有许多可用的示例,例如iptables_rules和apt_repository 。
确保其中一个食谱名称为Testing_resource,并包含包含Testing_resource食谱的节点的run_list。
步骤1-在Testing_resource食谱中创建自定义资源。
vipin@laptop:~/chef-repo $ subl cookbooks/Testing_resource/resources/default.rb
actions :create, :remove
attribute :title, kind_of: String, default: "World"
attribute :path, kind_of: String, default: "/tmp/greeting.txt"
步骤2-在Tesing_resource食谱中为资源创建提供程序。
vipin@laptop:~/chef-repo $ subl cookbooks/Testing_resource/provider/default.rb
action :create do
log "Adding '#{new_resource.name}' greeting as #{new_resource.
path}"
file new_resource.path do
content "#{new_resource.name}, #{new_resource.title}!"
action :create
end
action :remove do
Chef::Log.info "Removing '#{new_resource.name}' greeting #{new_resource.path}"
file new_resource.path do
action :delete
end
end
步骤3-通过编辑Testing_resource默认配方使用新资源。
vipin@laptop:~/chef-repo $ subl cookbooks/Tesing_resource/recipes/default.rb
greeting "Ohai" do
title "Chef"
action :create
end
步骤4-将修改后的食谱上传到Chef服务器。
vipin@laptop:~/chef-repo $ knife cookbook upload greeting
Uploading greeting [0.1.0]
步骤5-在节点上运行Chef-Client。
vipin@server:~$ sudo chef-client
...TRUNCATED OUTPUT...
2013-06-28T21:32:54+00:00] INFO: Processing greeting[Ohai] action
create (greeting::default line 9)
[2013-06-28T21:32:54+00:00] INFO: Adding 'Ohai' greeting as /tmp/
greeting.txt
[2013-06-28T21:32:54+00:00] INFO: Processing file[/tmp/greeting.
txt] action create (/srv/chef/file_store/cookbooks/greeting/
providers/default.rb line 7)
[2013-06-28T21:32:54+00:00] INFO: entered create
[2013-06-28T21:32:54+00:00] INFO: file[/tmp/greeting.txt] created
file /tmp/greeting.txt
...TRUNCATED OUTPUT...
步骤6-验证生成文件的内容。
user@server:~$ cat /tmp/greeting.txt
Ohai, Chef!
LWRP存在于食谱中。自定义资源位于食谱内部,并且将以食谱名称提供。在工作流程中,我们首先定义定义,然后将属性传递到将要在食谱中使用的资源。最后,我们在配方中使用这些动作和属性。