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

时间:2018-07-12 17:03:36

标签: ruby puppet hiera

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

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

清单:

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

file.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 -%>

我可以在每个选项的清单中添加以下内容,但是如果我有十几个,那么它看起来真的很糟糕!确实希望有一种更好的方法来做到这一点,但努力为大量可能的方法找到一种迭代的方法。

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

1 个答案:

答案 0 :(得分:1)

为什么不使用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 -%>