d8fe45b3d8
Having tagged plays allows us to easily run a subset of the plays for a command, and perform targeted operations with less risk of unintended consequences. The tags are typically named after the playbook, although some of the overcloud playbooks have been tagged without an overcloud- prefix.
10 lines
272 B
YAML
10 lines
272 B
YAML
---
|
|
- name: Ensure the libvirt daemon is configured
|
|
hosts: seed-hypervisor
|
|
tags:
|
|
- libvirt-host
|
|
roles:
|
|
- role: libvirt-host
|
|
libvirt_host_pools: "{{ seed_hypervisor_libvirt_pools }}"
|
|
libvirt_host_networks: "{{ seed_hypervisor_libvirt_networks }}"
|