我是ansible的新手。我无法在ansible网站上得到答案。 如何在ansible playbook中引用变量?例如:
- name: Set schedulability
hosts: oo_first_master
vars:
install_nodes: "{{ hostvars
| oo_select_keys(groups['oo_nodes_to_config'])
| oo_collect('open.common.hostname') }}"
install_node_vars: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config']) }}"
看到“install_nodes”的意思是这样的:
- name: Wait for Node Registration
command: >
{{ install.common.client_binary }} get node {{ item | lower }}
register: omd_get_node
until: omd_get_node.rc == 0
retries: 20
delay: 5
changed_when: false
with_items: install_nodes
我认为应该在ansible playbook中使用“{{}}”来引用变量。但它是直接引用的。在ansible中引用变量的方法有多少?
此致
答案 0 :(得分:2)
when
,failed_when
,changed_when
,with_items
,with_dict
等期望变量,因此您不必使用{{ 1}},在所有其他情况下使用双花括号。