ansible.builtin.random_choice 查找 - 从列表中返回随机元素
注意
此查找插件是 ansible-core
的一部分,包含在所有 Ansible 安装中。在大多数情况下,您可以使用简短的插件名称 random_choice
。但是,我们建议您使用 完全限定的集合名称 (FQCN) ansible.builtin.random_choice
,以便轻松链接到插件文档并避免与可能具有相同查找插件名称的其他集合冲突。
概要
‘random_choice’ 功能可用于随机选择某项。虽然它不是负载均衡器(有专门的模块用于负载均衡),但它在类似 MacGyver 的情况下可以充当简易负载均衡器。
在更基础的层面上,它们可以用来在原本可预测的自动化环境中添加随机性和趣味性。
示例
- name: Magic 8 ball for MUDs
ansible.builtin.debug:
msg: "{{ item }}"
with_random_choice:
- "go through the door"
- "drink from the goblet"
- "press the red button"
- "do nothing"
返回值
键 |
描述 |
---|---|
随机项 已返回:成功 |