Roles and sub Roles: A feature or a bug that will be fixed?

Hey,

I noticed that I can create roles inside roles in dirs of roles.

For example I can have the following structure:

  • roles/php5-fpm
  • roles/php5-fpm/pool

And then, inside a playbook I can do:

Roles:

  • { role: php5-fpm, var1=something, var2=something }
  • { role: php5-fpm/pool, var3=asdasd }

Such structure seems really logical for me.
Using that structure I can also share tasks.

For example in /roles/php5-fpm/handlers/main.yml I can do:
include: …/handlers/main.yml

And that way I won’t need to rewrite some stuff…

I didn’t see it documented anywhere, so I’m curious, will it be a good practice to use such structure?

Thanks.

Yes, it’s perfectly valid to pass a path as the role name, which allows you to more easily keep a common directory for your roles rather than requiring they be located in the same directory as the playbook.

Hi,

I’m currently trying this but running into some problems.

My plan is to package groups of roles then include them with the project playbooks and roles.

i.e

roles/role1/
roles/role2/
roles/projectA/role3
roles/projectA/role4

roles/projectA/role5

The issue I have found is that, whilst I can reference projectA/role3

The folder the roles get added to was created as part of the build process in Maven.

I had a think and decided that if I move that back into Ansible and reference it in all the role dependencies then it should work

I originally wanted to let the calling ansible project dictate the structure of the shared roles but I think doing this makes sense

Open to all suggestions

Thanks

It’s beside the point, but I really don’t like role dependencies in ansible - they were needed to end particular academic mailing list discussions about composability, and I think they are appropriate in some cases, but in MOST cases they overcomplicate setup.

It would usually be easier to just list roles that need to run first ahead of other roles, and that way the list is more clearly shown in the playbook, rather than somewhat obfuscated in terms of order. Still, they aren’t going away.

All being said, tagging a role should tag the dependent roles - if that appears to not be working, definitely file a bug on GitHub for it.

Hi,

I see you point and I guess it should be improve the execution time to define a role once before the others rather than having each role check its dependency even if it is idempotent.

I think the idea was that each role would be more encapsulated and that it ought to define the dependencies instead of somebody else having to work it out.

I solved my initial problem by ensuring that all my shared roles reference the directory they were packaged in. Instead of defining it in the project that imports it.

All works fine and yes the tagging works perfectly.

Will look to reduce the role dependencies.

Thanks for your help

James

Hi,

I see you point and I guess it should be improve the execution time to
define a role once before the others rather than having each role check its
dependency even if it is idempotent.

I think the idea was that each role would be more encapsulated and that it
ought to define the dependencies instead of somebody else having to work it
out.

There is already the "allow_duplicates" setting in Ansible that will
prevent a role from being loaded more than once, if called from the same
parameters.

This should apply within the same play.

Ok great will have a look into that thanks