playbook includes and tags

227 views
Skip to first unread message

Adam Guthrie

unread,
Dec 15, 2014, 7:07:44 AM12/15/14
to ansible...@googlegroups.com
I'm trying to add tags to tasks via includes but it doesn't work as I expect. I have

$ cat site.yml 
#- { include: foo.yml, tags: [ foo ] }
- include: foo.yml tags=foo

$ cat foo.yml 
- hosts: all
  tasks:
     - name: foo
       debug: msg=foo

Then

$ ansible-playbook -i inventory site.yml -t foo
ERROR: tag(s) not found in playbook: foo.  possible values: 

Same error with 1.8.2 and current devel branch and with the other include syntax commented above.

Any help much appreciated,

Adam

Michael DeHaan

unread,
Dec 15, 2014, 8:24:51 AM12/15/14
to ansible...@googlegroups.com
Hi Adam,

This looks like it's because you can add tags when pulling in roles, as well as tasks, but you can't tag a playbook on an include.  

It's something that sounds reasonable, but probably not something that has been done before.

Try this:

- hosts: all
  tasks:
     - include: my_tasks.yml tags=foo

Etc

And should be good to go.

Alternatively:

   roles:
     - { name: foo, tags: [ 'foo', 'bar' ] }

etc



--
You received this message because you are subscribed to the Google Groups "Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ansible-proje...@googlegroups.com.
To post to this group, send email to ansible...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/066af8dd-6b55-4def-b458-7007a686e941%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Adam Guthrie

unread,
Dec 15, 2014, 9:06:28 AM12/15/14
to ansible...@googlegroups.com
Yeah, I guess I misunderstood the docs (http://docs.ansible.com/playbooks_tags.html) here.

Would you be open to a pull request to implement this?

Adam

Michael DeHaan

unread,
Dec 15, 2014, 9:42:42 AM12/15/14
to ansible...@googlegroups.com
Tenatively, yes, I don't see a problem with it applying to all the tasks/roles if done simply enough.

However given the ongoing v2 refactoring we should probably wait until this is complete.   This should be in 1.9 (current release) timeframe.





Reply all
Reply to author
Forward
0 new messages