gpt4 book ai didi

ruby - 检查 Hiera 值是否存在,如果存在,则将每个值分配给变量

转载 作者:数据小太阳 更新时间:2023-10-29 08:06:46 26 4
gpt4 key购买 nike

我有一个可以在 Hiera 中为节点设置的选项列表; mem_limit、cpu_timeout、线程...

如果它们确实存在,我需要在 list 中定义的 Ruby 模板中设置它们。

list :

file { "/etc/file.conf":
ensure => present,
owner => root,
group => root,
mode => '0644',
content => template("${module_name}/file.conf.erb")
}

文件.conf.erb:

<% if @mem_limit -%>
limit_memory=<%= @mem_limit %>
<% end -%>

<% if @cpu_timeout -%>
cpu_timeout=<%= @cpu_timeout %>
<% end -%>

<% if @threads -%>
multiple_threads=true
num_threads=<%= @threads %>
<% end -%>

我可以在 list 中为每个选项添加以下内容,但如果我有超过一打,它看起来真的很糟糕!真的希望有一个更好的方法来做到这一点,但正在努力为大量可能的选项找到一种迭代方法。

if lookup('mem_limit', undef, undef, undef) != undef {
$mem_limit = lookup('mem_limit')
}

最佳答案

为什么不使用 automatic class parameter lookup ?我在这里做了很多假设,但我认为您应该能够一起避免显式 lookup 函数。

对于这些选项,我认为将它们全部打包到一个散列中可能是最优雅的,如果您愿意,可以将其称为$sytem_options:

class foo (
Optional[Hash] $system_options = {},
){

# From your example, I'm not sure if there's any
# content in this file if these options are not present
# hence the if statement.

if $system_options {
file { '/etc/file.conf':
ensure => present,
owner => root,
group => root,
mode => '0644',
content => template("${module_name}/file.conf.erb"),
}
}
}

无论您使用 hiera 定位哪个层次结构...

---
foo::system_options:
mem_limit: 1G

在您的 file.conf.erb 中假定本地作用域:

<% if @system_options['mem_limit'] -%>
limit_memory=<%= @system_options['mem_limit'] %>
<% end -%>

<% if @system_options['cpu_timeout'] -%>
cpu_timeout=<%= @system_options['cpu_timeout'] %>
<% end -%>

<% if @system_options['threads'] -%>
multiple_threads=true
num_threads=<%= @system_options['threads'] %>
<% end -%>

关于ruby - 检查 Hiera 值是否存在,如果存在,则将每个值分配给变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51311059/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com