查找插件
查找插件是 Ansible 对 Jinja2 模板语言的特定扩展。您可以在 playbook 中使用查找插件来访问外部数据源(文件、数据库、键值存储、API 和其他服务)。与所有模板一样,查找在 Ansible 控制机器上执行和评估。Ansible 使用标准模板系统提供查找插件返回的数据。您可以使用查找插件从外部来源加载变量或模板信息。您可以创建自定义查找插件。
注意
查找的执行工作目录相对于角色或剧本,而不是相对于执行脚本的本地任务。
将
wantlist=True
传递给查找,以便在 Jinja2 模板“for”循环中使用。默认情况下,出于安全原因,查找返回值被标记为不安全。如果您信任查找访问的外部来源,请传递
allow_unsafe=True
以允许 Jinja2 模板评估查找值。
警告
某些查找将参数传递给 shell。当使用来自远程/不受信任来源的变量时,请使用|quote过滤器以确保安全使用。
启用查找插件
Ansible 会启用它能找到的所有查找插件。您可以通过将自定义查找放入 playbook 旁边的lookup_plugins
目录、已安装集合的plugins/lookup/
目录中、独立角色中或ansible.cfg中配置的查找目录源之一来激活它。
使用查找插件
您可以在 Ansible 中可以使用模板的任何地方使用查找插件:在 playbook、变量文件中或模板模块的 Jinja2 模板中。有关使用查找插件的更多信息,请参见查找。
vars:
file_contents: "{{ lookup('file', 'path/to/file.txt') }}"
查找是循环的组成部分。在任何看到with_
的地方,下划线后面的部分都是查找的名称。因此,查找应输出列表;例如,with_items
使用items查找
tasks:
- name: count to 3
debug: msg={{ item }}
with_items: [1, 2, 3]
您可以将查找与过滤器、测试甚至彼此结合,以进行一些复杂的数据生成和操作。例如
tasks:
- name: Complicated chained lookups and filters
debug: msg="find the answer here:\n{{ lookup('url', 'https://google.com/search/?q=' + item|urlencode)|join(' ') }}"
with_nested:
- "{{ lookup('consul_kv', 'bcs/' + lookup('file', '/the/question') + ', host=localhost, port=2000')|shuffle }}"
- "{{ lookup('sequence', 'end=42 start=2 step=2')|map('log', 4)|list) }}"
- ['a', 'c', 'd', 'c']
版本 2.6 中的新功能。
您可以通过将errors
设置为ignore
、warn
或strict
来控制所有查找插件中错误的行为。默认设置为strict
,如果查找返回错误,则会导致任务失败。例如
忽略查找错误
- name: if this file does not exist, I do not care .. file plugin itself warns anyway ...
debug: msg="{{ lookup('file', '/nosuchfile', errors='ignore') }}"
[WARNING]: Unable to find '/nosuchfile' in expected paths (use -vvvvv to see paths)
ok: [localhost] => {
"msg": ""
}
获得警告而不是失败
- name: if this file does not exist, let me know, but continue
debug: msg="{{ lookup('file', '/nosuchfile', errors='warn') }}"
[WARNING]: Unable to find '/nosuchfile' in expected paths (use -vvvvv to see paths)
[WARNING]: An unhandled exception occurred while running the lookup plugin 'file'. Error was a <class 'ansible.errors.AnsibleError'>, original message: could not locate file in lookup: /nosuchfile
ok: [localhost] => {
"msg": ""
}
获得致命错误(默认值)
- name: if this file does not exist, FAIL (this is the default)
debug: msg="{{ lookup('file', '/nosuchfile', errors='strict') }}"
[WARNING]: Unable to find '/nosuchfile' in expected paths (use -vvvvv to see paths)
fatal: [localhost]: FAILED! => {"msg": "An unhandled exception occurred while running the lookup plugin 'file'. Error was a <class 'ansible.errors.AnsibleError'>, original message: could not locate file in lookup: /nosuchfile"}
强制查找返回列表:query
和 wantlist=True
版本 2.5 中的新功能。
在 Ansible 2.5 中,添加了一个名为query
的新 Jinja2 函数用于调用查找插件。lookup
和query
之间的区别主要在于query
将始终返回一个列表。lookup
的默认行为是返回一个逗号分隔值的字符串。lookup
可以使用wantlist=True
显式配置为返回一个列表。
此功能提供了一个更简单、更一致的界面来与新的loop
关键字交互,同时保持与lookup
的其他用法的向后兼容性。
以下示例等效
lookup('dict', dict_variable, wantlist=True)
query('dict', dict_variable)
如上所示,当使用query
时,wantlist=True
的行为是隐式的。
此外,q
被引入作为query
的简写形式
q('dict', dict_variable)
插件列表
您可以使用ansible-doc -t lookup -l
查看可用插件的列表。使用ansible-doc -t lookup <plugin name>
查看特定插件的文档和示例。