nschlemm / ansible-collection-vultr

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Collection integration Codecov License

Ansible Collection for Vultr Cloud

This repository contains the vultr.cloud Ansible Collection . The collection will be part of the Ansible package and provides a series of Ansible modules and plugins for interacting with the Vultr Cloud. You can find the documentation for this collection on the Ansible docs site.


NOTE

vultr.cloud is the successor of exisitng ngine_io.vultr collection (Ansible docs site), which uses the deprecated Vultr v1 API.


Ansible Version Compatibility

Tested with Ansible Core versions >= 2.11.

Release Notes

Release notes are available in our changelog.

Using this Collection

This collection will be shipped with the Ansible package >=6.0.0. If you have it installed, no more action is required.

If you have a minimal installation (only Ansible Core installed) or you want to use the latest version of the collection along with the whole Ansible package, you need to install the collection from Ansible Galaxy manually with the ansible-galaxy command-line tool:

ansible-galaxy collection install vultr.cloud

You can also include it in a requirements.yml file and install it via ansible-galaxy collection install -r requirements.yml using the format:

collections:
  - name: vultr.cloud

Note that if you install the collection manually, it will not be upgraded automatically when you upgrade the Ansible package. To upgrade the collection to the latest available version, run the following command:

ansible-galaxy collection install vultr.cloud --upgrade

You can also install a specific version of the collection, for example, if you need to downgrade when something is broken in the latest version (please report an issue in this repository). Use the following syntax where X.Y.Z can be any available version:

ansible-galaxy collection install vultr.cloud:==X.Y.Z

See Ansible Using collections for more details.

Contributing

There are many ways in which you can participate in the project, for example:

  • Submit bugs and feature requests, and help us verify as they are checked in
  • Review source code changes
  • Review the documentation and make pull requests for anything from typos to new content
  • If you are interested in fixing issues and contributing directly to the code base, please see the CONTRIBUTING document.

Run Tests

See Testing collections to learn how to test a collection.

Clone the Source

git clone git@github.com:vultr/ansible-collection-vultr.git
cd ansible-collection-vultr

Create a Virtual Environent

python3 -m venv .venv
source .venv/bin/activate

Install Ansible

pip install ansible

Setup your Vultr API Key

cp tests/integration/cloud-config-vultr.ini.origin tests/integration/cloud-config-vultr.ini
edit tests/integration/cloud-config-vultr.ini

Runs Tests in Docker

All vultr tests:

ansible-test integration --docker --diff -v cloud/vultr/

Specific vultr test e.g. ssh_key_info:

ansible-test integration --docker --diff -v cloud/vultr/ssh_key_info

Releasing

See the Releasing Guidelines to learn how to release this collection.

Code of Conduct

We follow the Ansible Code of Conduct in all our interactions within this project.

If you encounter abusive behavior violating the Ansible Code of Conduct, please refer to the policy violations section of the Code of Conduct for information on how to raise a complaint.

License

GNU General Public License v3.0

See COPYING to see the full text.

About

License:GNU General Public License v3.0


Languages

Language:Python 100.0%