是否有更好的方法来格式化我的hiera数据?我想避免"写两次"问题。
这是我现在拥有的:
[root@puppet-el7-001 ~]# cat example.yaml
---
controller_ips:
- 10.0.0.51
- 10.0.0.52
- 10.0.0.53
controller::horizon_cache_server_ip:
- 10.0.0.51:11211
- 10.0.0.52:11211
- 10.0.0.53:11211
我想知道Hiera中是否存在像Perl的地图功能一样的功能。如果是这样,我可以做类似的事情:
controller::horizon_cache_server_ip: "%{hiera_map( {"$_:11211"}, %{hiera('controller_ips')})}"
谢谢
这取决于您正在使用的木偶版本。我木偶3.x,您可以执行以下操作:
common::test::var1: a
common::test::var2: b
common::test::variable:
- "%{hiera('common::test::var1')}"
- "%{hiera('common::test::var2')}"
common::test::variable2:
- "%{hiera('common::test::var1')}:1"
- "%{hiera('common::test::var2')}:2"
在Puppet 4.0中,您可以尝试使用ZIP的组合,来自stdlib的哈希功能,并具有内置功能映射。类似:
$array3 = zip($array1, $array2)
$my_hash = hash($array3)
$my_hash.map |$key,$val|{ "${key}:${val}" }
突变是一个问题。由于YAML的引用功能,使用相同的数据更简单。
controller_ips: &CONTROLLERS
- 10.0.0.51
- 10.0.0.52
- 10.0.0.53
controller::horizon_cache_server_ip: *CONTROLLERS
您将需要更多的逻辑,以便可以独立存储端口。
controller::horizon_cache_server_port: 11211
清单需要以使您将IP与端口结合的方式进行结构。