Specifying collections required by required roles

202 views
Skip to first unread message

Todd Lewis

unread,
Oct 10, 2022, 9:35:15 AM10/10/22
to Ansible Project
We have a handful of "common" roles that are used by many of our Ansible projects. These projects list their required roles in their respective roles/requirements.yml files. Nothing surprising here; it's worked this way for years.

With recent maintenance, one of these "common" roles has started using bits from a couple of collections — community.general and ansible.utils. From reading the docs, I erroneously thought I could specify those collections in meta/requirements.yml like so:

---
collections:
  - name: community.general
  - name: ansible.utils

However, that's wrong. (See this for details.) Evidently meta/requirements.yml must be in "v1" format, which is just a list of roles; no "roles:" or "collections:" dict allowed.

So how does a required role specify the collections on which it depends?

Matt Martz

unread,
Oct 10, 2022, 9:41:57 AM10/10/22
to ansible...@googlegroups.com
You should generally not do this.  If you have content that is distributed, it should only rely on others of its type.  A standalone role on a standalone role, or a collection on a collection.  Note that collections can contain roles.

As such, there is no automatic installation of dependencies.

Should you wish to keep your use of standalone roles with dependencies on collections you would just have to rely on documentation.  And maybe insert some form of canary test, that tries to use a module you need, wrapped in a block/rescue that then provides a friendly error when the module is not available.

--
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 view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/f6fafb0d-b072-4252-9115-4132663221d9n%40googlegroups.com.


--
Matt Martz
@sivel
sivel.net

Richard Megginson

unread,
Oct 10, 2022, 10:01:08 AM10/10/22
to ansible...@googlegroups.com
Right - there is no mechanism in Ansible to do this.  This is what we did for linux system roles - https://linux-system-roles.github.io/documentation/role-requirements.html - basically, made up our own file and rely on documentation.

Todd Lewis

unread,
Oct 10, 2022, 11:25:30 AM10/10/22
to Ansible Project
Alas, these projects all run on AWX, so we can't rely on documented extra steps. It needs to work using the existing AWX scm update processes.

We get away with it as long as the required collections are already installed in one of the collection path directories. And they often will be on local workstations or AWX. But we obviously can't rely on that.

We'll either have to move these roles into our "collection-common" project from which we build our common collection, adding the dependencies to galaxy.yml there, or we'll need to ensure through our CI pipelines that projects pulling in the common roles include their required collections in each project's collections/requirements.yml.

This is not at all the answer I was expecting. But at least I can quit trying to make the unworkable work.

Matt Martz

unread,
Oct 10, 2022, 11:29:43 AM10/10/22
to ansible...@googlegroups.com
If you are using awx, you can just create a `collections/requirements.yml` file that can specify those needed collections.


Rowe, Walter P. (Fed)

unread,
Oct 11, 2022, 7:34:25 AM10/11/22
to ansible...@googlegroups.com
This is what we do. When we know lots of different services and workflows require a given collection we add it to the AWX (Ansible Tower) controller so the projects themselves don't have to worry about them.

Walter
--
Walter Rowe, Division Chief
Infrastructure Services, OISM
Mobile: 202.355.4123

Reply all
Reply to author
Forward
0 new messages