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"
返回值
键 |
描述 |
---|---|
随机项 返回:成功 |