Hello,
All my playbooks looks like:
- hosts: web_servers
roles:
- role: nginx
tags: nginx
- role: web_landing
tags: web_landing
- role: web_server
tags: web_server
because I want to be able to deploy only a certain role or subset of roles sometimes: because I'm developing on these, because a playbook may be huge and people know what bit are to be deployed and so on. And the only way I've found to run only a subset of the playbook is to use tags.
Is there any command-line parameter or other options I'm missing in order to deploy only certain roles in a playbook, without abusing tags?
Thank you very much!
-- Daniele