在Hiera中做基本的数学运算



我正试图根据自定义事实和基本模在hiera中设置crontab的工作日,但我甚至不知道这是否可能。

我想做一些类似的事情:

  cron-job:
    command:  "do something"
    user:    myuser
    hour:    "%{::instance}"
    minute:  "%{::instance}"
    weekday: "%{::instance}" % 7

这能做到吗?

不,这是不可能的。请记住,YAML只是数据,而不是代码。

Hiera确实使用插值标记提供了一些转换,但只有两个函数可以用于这些函数,没有算术。

我不确定我是否遵循了用例,但您可能可以使用inline_eppinline_template使其看起来像是存在此功能。

例如:

# In real usage this would be the result of a hiera lookup
$simple_lookup_result = '9 % 7'
$simple_evaluated = inline_template("<%= ${simple_lookup_result} %>")
exec { 'simple':
  command => "/bin/echo $simple_evaluated",
  logoutput => true,
}
# Again, hiera...
$complex_lookup_result = 'sprintf("The value is %i", 9 % 7)'
$complex_evaluated = inline_template("<%= ${complex_lookup_result} %>")
exec { 'complex':
  command => "/bin/echo $complex_evaluated",
  logoutput => true,
}

结果:

$ puppet apply eval.pp 
Notice: Compiled catalog for box in environment production in 0.06 seconds
Notice: /Stage[main]/Main/Exec[simple]/returns: 2
Notice: /Stage[main]/Main/Exec[simple]/returns: executed successfully
Notice: /Stage[main]/Main/Exec[complex]/returns: The value is 2
Notice: /Stage[main]/Main/Exec[complex]/returns: executed successfully
Notice: Applied catalog in 0.05 seconds

请记住,Hiera可以插入变量或Hiera查找,查找也可以在inline_eppinline_template最终评估的代码中进行。

注意,这只是一个例子,除非你信任你的用户并且真的很头疼,否则你不应该将Hiera输入传递到shell命令中

相关内容

  • 没有找到相关文章

最新更新