vn-ansible/collections/README.md

877 B

Collections

The purpose of collections is get more modules and plugins to use in ansible.

Collections are supported by Ansible community.

Install collections

In awx-operator container, execute:

ansible-galaxy collection install -r requirements.yml

Where requirements.yml we need to specify the list of collections that we want to install:

collections:
- name: community.general

Collection index

List collections

To list installed collections, run ansible-galaxy collection list (inside awx operator container)

Install multiple collections