Ansible Modules Collection for using OpenStack
Go to file
Jakob Meng b3ac841442 Dropped deprecated return values in floating_ip_info and assert remaining fields
Attributes such as location and tenant_id are computed by OpenStack
SDK. We do not return these fields in floating_ip_info because e.g.
tenant_id has been marked as deprecated and is a copy of the
project_id field.

Ref.: 70a06d9990

Added an assertion to CI which checks that all advertised fields
are returned by floating_ip_info. This helps with detecting breaking
changes in future updates.

Change-Id: I62e4681cd57f82054f68efe1dc59be2cca118135
2022-04-06 07:58:46 +00:00
changelogs Release 1.7.2 version 2022-03-10 11:43:44 +01:00
ci Dropped deprecated return values in floating_ip_info and assert remaining fields 2022-04-06 07:58:46 +00:00
contrib Update author lines 2020-06-23 21:50:43 +03:00
docs Fix docs for openstack fragment 2022-03-09 20:33:32 +00:00
meta Add subnet pool module 2022-03-31 20:05:11 +00:00
plugins Dropped deprecated return values in floating_ip_info and assert remaining fields 2022-04-06 07:58:46 +00:00
scripts/inventory Moved openstack inventory script from community.general 2020-04-13 15:22:18 +05:30
tests Refactored tox requirements for different Ansible releases 2022-03-31 10:19:50 +02:00
tools Reenabled check-import.sh which tests imports to Ansible Galaxy 2022-03-29 15:20:17 +02:00
.gitignore Add galaxy.yml to support install from git 2020-10-21 09:12:05 +00:00
.gitreview Added .gitreview 2019-09-25 15:21:42 +00:00
.zuul.yaml Fixed Ansible branch in base job openstack-tox-linters-ansible 2022-04-04 10:28:25 +02:00
bindep.txt Add bindep.txt for ansible-builder 2021-05-19 14:04:33 -04:00
CHANGELOG.rst Release 1.7.2 version 2022-03-10 11:43:44 +01:00
CONTRIBUTING.rst Add contributing file 2020-05-13 08:07:01 -05:00
COPYING Fix license metadata 2020-03-05 15:08:38 +00:00
galaxy.yml Release 1.7.2 version 2022-03-10 11:43:44 +01:00
galaxy.yml.in Synchronized galaxy.yml and galaxy.yml.in files 2022-03-25 16:01:40 +01:00
README.md Bumped minimum required OpenStack SDK release to SDK 0.36.0 (Train) 2022-03-10 13:17:08 +00:00
requirements.txt Bumped minimum required OpenStack SDK release to SDK 0.36.0 (Train) 2022-03-10 13:17:08 +00:00
setup.cfg setup.cfg: Replace dashes with underscores 2021-04-29 17:38:54 +08:00
setup.py Add setup.py for install with pip 2020-06-04 14:23:23 +00:00
tox.ini Refactored tox requirements for different Ansible releases 2022-03-31 10:19:50 +02:00

OpenDev Zuul Builds - Ansible Collection OpenStack

Ansible Collection: openstack.cloud

This repo hosts the openstack.cloud Ansible Collection.

The collection includes the Openstack modules and plugins supported by Openstack community to help the management of Openstack infrastructure.

Installation and Usage

Installing dependencies

For using the Openstack Cloud collection firstly you need to install ansible and openstacksdk Python modules on your Ansible controller. For example with pip:

pip install "ansible>=2.9" "openstacksdk>=0.36"

OpenStackSDK has to be available to Ansible and to the Python interpreter on the host, where Ansible executes the module (target host). Please note, that under some circumstances Ansible might invoke a non-standard Python interpreter on the target host. Using Python version 3 is highly recommended for OpenstackSDK and strongly required from OpenstackSDK version 0.39.0.


NOTE

OpenstackSDK is better to be the last stable version. It should NOT be installed on Openstack nodes, but rather on operators host (aka "Ansible controller"). OpenstackSDK from last version supports operations on all Openstack cloud versions. Therefore OpenstackSDK module version doesn't have to match Openstack cloud version usually.


Installing the Collection from Ansible Galaxy

Before using the Openstack Cloud collection, you need to install the collection with the ansible-galaxy CLI:

ansible-galaxy collection install openstack.cloud

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

collections:
- name: openstack.cloud

Playbooks

To use a module from the Openstack Cloud collection, please reference the full namespace, collection name, and module name that you want to use:

---
- name: Using Openstack Cloud collection
  hosts: localhost
  tasks:
    - openstack.cloud.server:
        name: vm
        state: present
        cloud: openstack
        region_name: ams01
        image: Ubuntu Server 14.04
        flavor_ram: 4096
        boot_from_volume: True
        volume_size: 75

Or you can add the full namespace and collection name in the collections element:

---
- name: Using Openstack Cloud collection
  hosts: localhost
  collections:
    - openstack.cloud
  tasks:
    - server_volume:
        state: present
        cloud: openstack
        server: Mysql-server
        volume: mysql-data
        device: /dev/vdb

Usage

See the collection docs at Ansible site:

Contributing

For information on contributing, please see CONTRIBUTING

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

We work with OpenDev Gerrit, pull requests submitted through GitHub will be ignored.

Testing and Development

If you want to develop new content for this collection or improve what is already here, the easiest way to work on the collection is to clone it into one of the configured COLLECTIONS_PATHS, and work on it there.

Testing with ansible-test

We use ansible-test for sanity:

tox -e linters

More Information

TBD

Communication

We have a dedicated Interest Group for Openstack Ansible modules. You can find other people interested in this in #openstack-ansible-sig on OFTC IRC.

License

GNU General Public License v3.0 or later

See LICENCE to see the full text.