So I apparently was going the wrong route with my thoughts on how tags in roles and playbooks interacted. I was thinking that when you referenced the tags when bringing in the role you were limiting the role, not tagging it inside the playbook.
In my head what this enabled was the ability to have a very config management oriented role that could cover all facets of whatever the role was related to, preferably laid out in such a way that the end state of running an non-limited manner ended with everything installed, configured, and running.
Then with the same role you would then be able to modularly utilize specifically related tasks in the role based on tags, which benefits related orchestration playbooks. This specifically appeals to me for the purpose of having ready to run playbooks to hand off to our dev and ops teams.
Its now obvious to me that I was thinking about this wrong[1] and the second I actually tried to use it this way it all fell apart. I have two roles[2][3] that are setup with tags to support this methodology, and isolating them in a playbook and using the tag restrictions of the cli, this works.
I’ve got an example of what I was originally doing wrong, and what I’m proposing as a thought of role/tag behavior inside playbooks in a gist[4].
In the playbook there is some functionality thats not in upstream yet, but there is an associated PR[5] for it.
I feel this is a reasonable use case, but is there a better way for me to accomplish the same thing? Would there be interest in supporting this feature? (I’m open to working on it if I can find the time.
thanks
greg
[1] re-reading the related documentation was a slap in the face, because the associated text is rather obvious about the behavior.
[2] https://github.com/gregswift/ansible-plight
[3] https://github.com/kost/ansible-galaxy.ubuntu.puppet
[4] https://gist.github.com/gregswift/a1c72dfd70f6736b6748
[5] https://github.com/ansible/ansible/pull/7260