gpt4 book ai didi

python - 检查 ansible 上 Jinja2 模板中的字典中是否存在 key

转载 作者:IT老高 更新时间:2023-10-28 20:45:38 25 4
gpt4 key购买 nike

我在 ansible 中有一个带有所有接口(interface)的 dict 的 host_var:

---
interfaces:
vlan0:
ip: 127.0.0.1
mask: 255.255.255.0
state: true

vlan2:
ip: 127.0.1.1
mask: 255.255.255.0
state: true

我想检查 dict 是否有键 vlan1 如果可以放入模板值 vlan1.ip 否则放入 vlan2.ip

{% if interfaces.vlan1 %} 
# and also I try {% if 'vlan1' in interfaces %}
{{ interfaces.vlan1.ip }};
{% else %}
{{ interfaces.vlan2.ip|default("127.0.0.1") }};
{% endif %};

但我有一个错误:

fatal: [127.0.0.1] => {'msg': "AnsibleUndefinedVariable: One or more undefined variables: 'dict object' has no attribute 'vlan1'", 'failed': True}

found它必须在 Jinja2 中工作,但它似乎在 ansible 中不起作用。也许有人有另一种方法来解决这个问题? 当我定义 vlan1 它工作正常。 Ansible 1.9.2 版

我试图在 python 中重现它,如果我的字典没有键 vlan1,则没有错误。感谢@GUIDO

>>> from jinja2 import Template
>>> b = Template("""
... {% if interfaces.vlan1 %}
... {{ interfaces.vlan1.ip }}
... {% else %}
... {{ interfaces.vlan2.ip|default("127.0.3.1") }}
... {% endif %}""")
>>> b.render(interfaces={'vlan3':{'ip':'127.0.1.1'},'vlan2':{'ip':'127.0.2.1'}})
u'\n\n127.0.2.1\n'
>>> b.render(interfaces={'vlan1':{'ip':'127.0.1.1'},'vlan2':{'ip':'127.0.2.1'}})
u'\n\n127.0.1.1\n'

最佳答案

答案很简单,它显示在 ansible 错误消息中。首先,我需要检查是否定义了 var。

{% if interfaces.vlan1 is defined %}
{{ interfaces.vlan1.ip }}
{% else %}
{{ interfaces.vlan2.ip|default("127.0.3.1") }}
{% endif %}

这种组合效果很好。

关于python - 检查 ansible 上 Jinja2 模板中的字典中是否存在 key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33400771/

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