Skip to content

Ansible Galaxy

Installing from Ansible Galaxy

The solti-monitoring collection will be published to Ansible Galaxy for easy installation:

ansible-galaxy collection install jackaltx.solti_monitoring

Installing from Source

For development or testing the latest version:

# Clone the repository
git clone https://github.com/jackaltx/solti-monitoring-collection.git
cd solti-monitoring-collection

# Install collection locally
ansible-galaxy collection install . --force

Verifying Installation

Check that the collection is installed:

ansible-galaxy collection list | grep solti_monitoring

Collection Dependencies

The solti-monitoring collection may depend on other collections. These are automatically installed when using ansible-galaxy collection install.

Check galaxy.yml in the collection for the complete dependency list.

Installation Location

Collections are installed to: - System-wide: /usr/share/ansible/collections/ - User-specific: ~/.ansible/collections/ - Project-specific: ./collections/ (when using requirements.yml)

Using requirements.yml

For reproducible deployments, use a requirements.yml file:

---
collections:
  - name: jackaltx.solti_monitoring
    version: ">=1.0.0"

Install with:

ansible-galaxy collection install -r requirements.yml