496904d650
Including tasks has a performance penalty when compared with importing tasks. If the include has a condition associated with it, then the overhead of the include may be lower than the overhead of skipping all imported tasks. In the case of the register.yml and bootstrap.yml includes, all of the tasks in the included file use run_once: True. The run_once flag improves performance at scale drastically, so importing these tasks unconditionally will have a lower overhead than a conditional include task. It therefore makes sense to switch to use import_tasks there. See [1] for benchmarks of run_once. [1] https://github.com/stackhpc/ansible-scaling/blob/master/doc/run-once.md Change-Id: Ic67631ca3ea3fb2081a6f8978e85b1522522d40d Partially-Implements: blueprint performance-improvements
7 lines
219 B
YAML
7 lines
219 B
YAML
---
|
|
- name: Update DNS pools
|
|
become: true
|
|
command: docker exec -t designate_worker designate-manage pool update --file /etc/designate/pools.yaml
|
|
run_once: True
|
|
delegate_to: "{{ groups['designate-worker'][0] }}"
|