我在 yaml 文件中有以下定义:
keepalived:
cluster_name: "cluster.example.lan"
cluster_ip: "192.168.1.10"
cluster_nic: "eth0"
haproxy:
bind_address: %{hiera('keepalived::cluster_ip')}
结果,bind_address
我得到了一个空字符串。
如果我使用%{hiera('keepalived')}
我已经打印了整个散列,但我只需要cluster_ip
这个散列。我怎样才能查找cluster_ip
?