Hello
I have a site.yml which imports several playbooks.
- import_playbook: webservers.yml
- ....
Every playbook "calls" several roles:
- name: apply the webserver configuration
hosts: webservers
roles:
- javajdk
- tomcat
- apache
Now how can I run lets say only the javajdk role ?
ansible-playbook -i inventory/xx webservers.yml would run all roles... I know that there are tags, but how do I assign them to a role in general?
Thanks a lot
Michael