作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是chef
的新手,刚开始使用machine
和LWRP
资源。
在进行大量阅读时,我发现了converge_by
一词。这是什么意思?
最佳答案
如果您编写自己的纯Ruby代码,以修改LWRP中的系统,那么您想用converge_by包装该代码。它有两件事,那就是它保护包装的代码,以使它不会在运行原因模式下运行。并且它会在运行时自动将资源标记为已更新。
为了使要写入的资源是幂等的(并且不会在每次运行时都报告为更新的),通常应该在对幂等的检查中包装converge_by。
所以像这样:
use_inline_resources
action :doit do
unless File.exist("/tmp/doit")
converge_by("creating /tmp/doit") do
FileUtils.touch("/tmp/doit")
end
end
end
use_inline_resources
action :doit do
file "/tmp/doit"
end
关于chef-infra - 'converge_by'是什么意思,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35238385/
我是一名优秀的程序员,十分优秀!