鉴于 Ansible 通过 Jinja2 处理所有变量,并且可以执行以下操作:
- name: Debug sequence item value
debug: msg={{ 'Item\:\ %s'|format(item) }}
with_sequence: count=5 format="%02d"
正确地将字符串插入为:
ok: [server.name] => (item=01) => {"item": "01", "msg": "Item: 01"}
ok: [server.name] => (item=02) => {"item": "02", "msg": "Item: 02"}
ok: [server.name] => (item=03) => {"item": "03", "msg": "Item: 03"}
ok: [server.name] => (item=04) => {"item": "04", "msg": "Item: 04"}
ok: [server.name] => (item=05) => {"item": "05", "msg": "Item: 05"}
为什么这不起作用:
- name: Debug sequence item value
debug: msg={{ 'Item\:\ %02d'|format(int(item)) }}
with_sequence: count=5
这显然会导致某种解析问题,导致我们想要的字符串变得冗长:
ok: [server.name] => (item=01) => {"item": "01", "msg": "{{Item\\:\\ %02d|format(int(item))}}"}
请注意,在上面的示例item
中是一个字符串,因为默认格式with_sequence
是%d
,并且format()
不会将值item
转换为字符串插值所需的格式%02d
,因此需要使用 进行转换int()
。
这是一个错误还是我错过了什么?