ansible-cached-lookup
An Ansible lookup plugin that caches the results of any other lookup, most useful in group/host vars.
By default, Ansible evaluates any lookups in a group/host var whenever the var is accessed. For example, given a group/host var:
content: "{{ lookup('pipe', 'a-very-slow-command' }}"
any tasks that access content (e.g. in a template) will re-evaluate the
lookup, which adds up very quickly. See
ansible/ansible#9263.
Installation
-
Pick a name that you want to use to call this plugin in Ansible playbooks. This documentation assumes you're using the name
cached.pip install ansible-cached-lookup -
Create a
lookup_pluginsdirectory in the directory in which you run Ansible.By default, Ansible will look for lookup plugins in an
lookup_pluginsfolder adjacent to the running playbook. For more information on this, or to change the location where Ansible looks for lookup plugins, see the Ansible docs. -
Create a file called
cached.py(or whatever name you picked) in thelookup_pluginsdirectory, with one line:from ansible_cached_lookup import LookupModule
Contributing
To run the tests, run tox.
To format code to pass tox -e lint, run tox -e format.
Release files for ansible-cached-lookup 1.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| ansible-cached-lookup-1.0.0.tar.gz | 4.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| ansible_cached_lookup-1.0.0-py2.py3-none-any.whl | Python 3, Python 2 | none | any | Details |
Total release size:8.1 kB
Release files / ansible-cached-lookup-1.0.0.tar.gz
| Download URL | ansible-cached-lookup-1.0.0.tar.gz |
|---|---|
| Size | 4.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
64c3009d6f64aa32dc738332bec02add3eeb57c0636215a4bb678dc352bf7a6a
|
|
BLAKE2b-256 checksum How to use checksums |
b57c19665493a4f7637a413ff15a1b981bbbd847886c168b6844d9cb0d96fe8d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / ansible_cached_lookup-1.0.0-py2.py3-none-any.whl
| Download URL | ansible_cached_lookup-1.0.0-py2.py3-none-any.whl |
|---|---|
| Size | 3.3 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
cb59a1dd4525513e11a89afe1821df829fbd566b0f37e3d330b8a41d6a52a810
|
|
BLAKE2b-256 checksum How to use checksums |
e030293d3610adf4c11f13dee7c0fd32279b5df90a937de13cc283d2ea7e236b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|