gpt4 book ai didi

loops - 如何在 Ansible 中强制执行 with_dict 的顺序?

转载 作者:行者123 更新时间:2023-12-04 10:37:16 24 4
gpt4 key购买 nike

我有我想要迭代的字典类型的数据,保持顺序很重要:

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更适合的吗? ?在任务执行期间我真的需要键和值...

最佳答案

我没有看到使用 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_dictwith_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

关于loops - 如何在 Ansible 中强制执行 with_dict 的顺序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28414055/

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