Chapter 8. Creating a collection for distributing roles
An Ansible role is a self-contained unit of Ansible automation content that groups related tasks and associated variables, files, handlers, and other assets in a defined directory structure.
You can run Ansible roles in one or more plays, and reuse them across playbooks. Invoking roles instead of tasks simplifies playbooks. You can migrate existing standalone roles into collections, and push them to private automation hub to share them with other users in your organization. Distributing roles in this way is a typical way to use collections.
With Ansible collections, you can store and distribute multiple roles in a single unit of reusable automation. Inside a collection, you can share custom plug-ins across all roles in the collection instead of duplicating them in each role.
You must move roles into collections if you want to use them in Ansible Automation Platform.
You can add existing standalone roles to a collection, or add new roles to it. Push the collection to source control and configure credentials for the repository in Ansible Automation Platform.
8.1. Planning your collection
Organize smaller bundles of curated automation into separate collections for specific functions, rather than creating one big general collection for all of your roles.
For example, you could store roles that manage the networking for an internal system called myapp
in a company_namespace.myapp_network
collection, and store roles that manage and deploy networking in AWS in a collection called company_namespace.aws_net
.
8.2. Prerequisites
- You have installed VS Code and the Ansible extension.
- You have installed the Microsoft Dev Containers extension in {VS Code.
- You have installed Ansible development tools.
- You have installed a containerization platform, for example Podman, Podman Desktop, Docker, or Docker Desktop.
-
You have a Red Hat account and you can log in to the Red Hat container registry at
registry.redhat.io
. For information about logging in toregistry.redhat.io
, see Authenticating with the Red Hat container registry.
8.3. Scaffolding a collection for your roles
You can scaffold a collection for your roles from the Ansible extension in VS Code.
Procedure
- Open VS Code.
- Navigate to the directory where you want to create your roles collection.
- Click the Ansible icon in the VS Code activity bar to open the Ansible extension.
Select Get started in the Ansible content creator section.
The Ansible content creator tab opens.
In the Create section, click Ansible collection project.
The Create new Ansible project tab opens.
In the form in the Create Ansible project tab, enter the following:
-
Namespace: Enter a name for your namespace, for example
company_namespace
. -
Collection: Enter a name for your collection, for example,
myapp_network
. Init path: Enter the path to the directory where you want to scaffold your new collection.
If you enter an existing directory name, the scaffolding process overwrites the contents of that directory. The scaffold process only allows you to use an existing directory if you enable the Force option.
-
If you are using the containerized version of Ansible development tools, the destination directory path is relative to the container, not a path in your local system. To discover the current directory name in the container, run the pwd command in a terminal in VS Code. If the current directory in the container is
workspaces
, enterworkspaces/<current_project>/collections
. -
If you are using a locally installed version of Ansible Dev tools, enter the full path to the directory, for example
/user/<username>/path/to/<collection_directory>
.
-
If you are using the containerized version of Ansible development tools, the destination directory path is relative to the container, not a path in your local system. To discover the current directory name in the container, run the pwd command in a terminal in VS Code. If the current directory in the container is
-
Namespace: Enter a name for your namespace, for example
- Click .
Verification
The following message appears in the Logs pane of the Create Ansible collection tab.
--------------------- ansible-creator logs --------------------- Note: collection company_namespace.myapp_network created at /path/to/collections/directory
--------------------- ansible-creator logs ---------------------
Note: collection company_namespace.myapp_network created at /path/to/collections/directory
Copy to clipboardCopied
The following directories and files are created in your collections/
directory:
├── .devcontainer ├── .github ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .prettierignore ├── .vscode ├── CHANGELOG.rst ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING ├── LICENSE ├── MAINTAINERS ├── README.md ├── changelogs ├── devfile.yaml ├── docs ├── extensions ├── galaxy.yml ├── meta ├── plugins ├── pyproject.toml ├── requirements.txt ├── roles ├── test-requirements.txt ├── tests └── tox-ansible.ini
├── .devcontainer
├── .github
├── .gitignore
├── .isort.cfg
├── .pre-commit-config.yaml
├── .prettierignore
├── .vscode
├── CHANGELOG.rst
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING
├── LICENSE
├── MAINTAINERS
├── README.md
├── changelogs
├── devfile.yaml
├── docs
├── extensions
├── galaxy.yml
├── meta
├── plugins
├── pyproject.toml
├── requirements.txt
├── roles
├── test-requirements.txt
├── tests
└── tox-ansible.ini
Copy to clipboardCopied8.4. Migrating existing roles to your collection
The directory for a standalone role has the following structure. Your role might not contain all of these directories.
my_role ├── README.md ├── defaults │ └── main.yml ├── files ├── handlers │ └── main.yml ├── meta │ └── main.yml ├── tasks │ └── main.yml ├── templates ├── tests │ ├── inventory │ └── test.yml └── vars └── main.yml
my_role
├── README.md
├── defaults
│ └── main.yml
├── files
├── handlers
│ └── main.yml
├── meta
│ └── main.yml
├── tasks
│ └── main.yml
├── templates
├── tests
│ ├── inventory
│ └── test.yml
└── vars
└── main.yml
Copy to clipboardCopied
An Ansible role has a defined directory structure with seven main standard directories. Each role must must include at least one of these directories. You can omit any directories the role does not use. Each directory contains a main.yml
file.
Procedure
If necessary, rename the directory that contains your role to reflect its content, for example,
acl_config
ortacacs
.Roles in collections cannot have hyphens in their names. Use the underscore character (
_
) instead.Copy the roles directories from your standalone role into the
roles/
directory in your collection.For example, in a collection called
myapp_network
, add your roles to themyapp_network/roles/
directory.Copy any plug-ins from your standalone roles into the
plugins directory/
for your new collection. The collection directory structure resembles the following.company_namespace └── myapp_network ├── ... ├── galaxy.yml ├── docs ├── extensions ├── meta ├── plugins ├── roles │ ├── acl_config │ │ ├── README.md │ │ ├── defaults │ │ ├── files │ │ ├── handlers │ │ ├── meta │ │ ├── tasks │ │ ├── templates │ │ ├── tests │ │ └── vars │ └── tacacs │ ├── README.md │ ├── default │ ├── files │ ├── handlers │ ├── meta │ ├── tasks │ ├── templates │ ├── tests │ └── vars │ ├── run ├── ... ├── tests └── vars
Copy to clipboardCopiedcompany_namespace └── myapp_network ├── ... ├── galaxy.yml ├── docs ├── extensions ├── meta ├── plugins ├── roles │ ├── acl_config │ │ ├── README.md │ │ ├── defaults │ │ ├── files │ │ ├── handlers │ │ ├── meta │ │ ├── tasks │ │ ├── templates │ │ ├── tests │ │ └── vars │ └── tacacs │ ├── README.md │ ├── default │ ├── files │ ├── handlers │ ├── meta │ ├── tasks │ ├── templates │ ├── tests │ └── vars │ ├── run ├── ... ├── tests └── vars
The
run
role is a default role directory that is created when you scaffold the collection.- Update your playbooks to use the fully qualified collection name (FQDN) for your new roles in your collection.
Not every standalone role will seamlessly integrate into your collection without modification of the code. For example, if a third-party standalone role from Galaxy that contains a plug-in uses the module_utils/
directory, then the plug-in itself has import statements.
8.5. Creating a new role in your collection
Procedure
-
To create a new role, copy the default
run
role directory that was scaffolded when you created the collection. -
Define the tasks that you want your role to perform in the
tasks/main.yml
file. If you are creating a role to reuse tasks in an existing playbook, copy the content in the tasks block of your playbook YAML file. Remove the whitespace to the left of the tasks. Useansible-lint
in VS Code to check your YAML code. -
If your role depends on another role, add the dependency in the
meta/main.yml
file.
8.6. Adding documentation for your roles collection
It is important to provide documentation for your roles so that other users understand what your roles do and how to use them.
8.6.1. Documenting your roles
When you scaffolded your collection directory, a README.md
file was added in the role directory. Add your documentation for your role in this file. Provide the following information in the README.md
files for every role in your collection:
- Role description: A brief summary of what the role does
- Requirements: List the collections, libraries, and required installations
- Dependencies
Role variables: Provide the following information about the variables your role uses.
- Description
- Defaults
- Example values
- Required variables
- Example playbook: Show an example of a playbook that uses your role. Use comments in the playbook to help users understand where to set variables.
The README.md
file in controller_configuration.ad_hoc_command_cancel
is an example of a role with standard documentation:
8.6.2. Documenting your collection
In the README.md
file for your collection, provide the following information:
- Collection description: Describe what the collection does.
- Requirements: List required collections.
- List the roles as a component of the collection.
- Using the collection: Describe how to run the components of the collection.
- Add a troubleshooting section.
- Versioning: Describe the release cycle of your collection.
8.7. Publishing your collection in private automation hub
Prerequisite
- Package your collection into a tarball. Format your collection file name as follows:
<my_namespace-my_collection-x.y.z.tar.gz>
For example, company_namespace-myapp_network-1.0.0.tar.gz
Procedure
- Create a namespace for your collection in private automation hub. See Creating a namespace in the Managing automation content guide.
- Optional: Add information to your namespace. See Adding additional information and resources to a namespace in the Managing automation content guide.
- Upload your roles collections tarballs to your namespace. See Uploading collections to your namespaces in the Managing automation content guide.
- Approve your collection for internal publication. See Uploading collections to your namespaces in the Managing automation content guide.
8.7.1. Using your collection in projects in Red Hat Ansible Automation Platform
To use your collection in automation controller, you must add your collection to an execution environment and push it to private automation hub.
The following procedure describes the workflow to add a collection to an execution environment. Refer to Customizing an existing automation executions environment image in the Creating and using execution environments guide for the commands to execute these steps.
- You can pull an execution environment base image from automation hub, or you can add your collection to your own custom execution environment.
- Add the collections that you want to include in the execution environment.
- Build the new execution environment.
- Verify that the collections are in the execution environment.
- Tag the image and push it to private automation hub.
- Pull your new image into your automation controller instance.
- The playbooks that use the roles in your collection must use the fully qualified domain name (FQDN) for the roles.