我想要迭代的字典类型的数据并保持顺序很重要:
with_dict_test:
one: 1
two: 2
three: 3
four: 4
five: 5
six: 6
现在当我编写一个打印键和值的任务时,它们会以看似随机的顺序打印(6,3,1,4,5,2)。
---
- name: with_dict test
debug: msg="{{item.key}} --> {{item.value}}"
with_dict: with_dict_test
如何强制Ansible按给定顺序迭代?还是有比with_dict
更合适的东西?在任务执行期间我真的需要密钥和值......
答案 0 :(得分:8)
我没有看到使用dicts的简单方法,因为他们根据哈希键的顺序确定顺序。
您可以执行以下操作:
with_dict_test:
- { key: 'one', value: 1 }
- { key: 'two', value: 2 }
- { key: 'three', value: 3 }
- { key: 'four', value: 4 }
- { key: 'five', value: 5 }
- { key: 'six', value: 6 }
在剧本中只需将with_dict
替换为with_items
:
---
- name: with_dict test
debug: msg="{{item.key}} --> {{item.value}}"
with_items: with_dict_test
如果你发现这个解决方案(变量的声明)很难看,你可以这样做:
key: ['one', 'two', 'three', 'four', 'five', 'six']
values: [1, 2, 3, 4, 5, 6]
并在剧本中
---
- name: with_dict test
debug: msg="{{item.0}} --> {{item.1}}"
with_together:
- key
- value
答案 1 :(得分:2)
我不完全确定,但也许这会对你有所帮助:
- hosts: localhost
vars:
dict:
one: 1
two: 2
three: 3
sorted: "{{ dict|dictsort(false,'value') }}"
tasks:
- debug:
var: sorted
- debug:
msg: "good {{item.1}}"
with_items: sorted
我假设您可以使用Jinja过滤器以某种方式对复杂值进行排序。你可以检查的另一件事是合并dict.values()|list
和with_sequence
,但你从那块石头中挤出的任何东西都不会完全尖叫“可维护。”