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.
8 lines
146 B
YAML
8 lines
146 B
YAML
---
|
|
- name: Ensure development tools are installed
|
|
hosts: seed-hypervisor:seed:overcloud
|
|
tags:
|
|
- dev-tools
|
|
roles:
|
|
- role: dev-tools
|