Ansible Modules Collection for using OpenStack
Go to file
Jakob Meng e4be201f20 Properly documented openstacksdk version requirements
With "extends_documentation_fragment: ['openstack.cloud.openstack']"
it is not necessary to list required Python libraries in section
'requirements' of DOCUMENTATION docstring in modules. Ansible will
merge requirements from doc fragments and DOCUMENTATION docstring
which previously resulted in duplicates such as in server module [0]:

* openstacksdk
* openstacksdk >= 0.36, < 0.99.0
* python >= 3.6

When removing the 'requirements' section from server module, then
Ansible will list openstacksdk once only:

* openstacksdk >= 0.36, < 0.99.0
* python >= 3.6

To see what documentation Ansible will produce for server module run:

  ansible-doc --type module openstack.cloud.server

[0] https://docs.ansible.com/ansible/latest/collections/openstack/\
    cloud/server_module.html

Change-Id: Ia53c2c34436c7a72080602f5699e82d20f677b8b
2023-01-16 13:52:45 +01:00
changelogs Release 1.10.0 version 2022-10-04 11:07:23 +02:00
ci Refactored coe_cluster{,_template} modules 2023-01-11 15:09:27 +01:00
docs Fixed docs 2023-01-10 16:13:26 +01:00
meta Add subnet pool module 2022-03-31 20:05:11 +00:00
plugins Properly documented openstacksdk version requirements 2023-01-16 13:52:45 +01:00
scripts/inventory Don't use deprecated distutils from python 3.10 2022-09-28 10:28:21 +00:00
tests Fixed code violating Flake8 rule E275 2022-08-01 15:03:32 +00:00
tools Allow external commands in tox and use non-master branches on older releases 2022-12-14 15:23:08 +01: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 Removed TripleO related Zuul CI jobs 2023-01-15 19:43:58 +01:00
bindep.txt Add bindep.txt for ansible-builder 2021-05-19 14:04:33 -04:00
CHANGELOG.rst Release 1.10.0 version 2022-10-04 11:07:23 +02:00
COPYING Fix license metadata 2020-03-05 15:08:38 +00:00
galaxy.yml Dropped obsolete module templates 2022-12-14 15:26:08 +01:00
galaxy.yml.in Dropped obsolete module templates 2022-12-14 15:26:08 +01:00
README.md Updated docs 2023-01-10 14:18:44 +01:00
requirements.txt Lowered maximum OpenStack SDK version to 0.98.999 2022-05-24 14:47:34 +02: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 Improved compatibility with both tox>3,<4 and tox>=4 2022-12-30 17:01:49 +01:00

OpenDev Zuul Builds - Ansible OpenStack Collection

Ansible OpenStack Collection

Ansible OpenStack collection aka openstack.cloud provides Ansible modules and Ansible plugins for managing OpenStack clouds. It is supported and maintained by the OpenStack community.

Branches and Non Backward Compatibility ⚠️

Our codebase has been split into two separate release series, 2.x.x and 1.x.x:

  • 2.x.x releases of Ansible OpenStack collection are compatible with OpenStack SDK 1.x.x and its release candidates 0.99.0 and later only (OpenStack Zed and later). Our master branch tracks our 2.x.x releases.
  • 1.x.x releases of Ansible OpenStack collection are compatible with OpenStack SDK 0.x.x prior to 0.99.0 only (OpenStack Yoga and earlier). Our stable/1.0.0 branch tracks our 1.x.x releases.
  • 2.x.x releases of Ansible OpenStack collection are not backward compatible to 1.x.x releases ⚠️

For rationale and details please read our branching docs. Both branches will be developed in parallel for the time being. Patches from master will be backported to stable/1.0.0 on a best effort basis but expect new features to be introduced in our master branch only. Contributions are welcome for both branches!

Installation

For using this collection, first you have to install both Python packages ansible and openstacksdk on your Ansible controller:

pip install "ansible>=2.9" "openstacksdk>=0.36,<0.99.0"

OpenStack SDK has to be available on the Ansible host running the OpenStack modules. Depending on the Ansible playbook and roles you use, this host is not necessarily the Ansible controller. Sometimes Ansible might invoke a non-standard Python interpreter on the target Ansible host. Using Python 3.6 is required for modules in this collection.

Always use the last stable version of OpenStack SDK if possible, also when running against older OpenStack deployments. OpenStack SDK is backward compatible to older OpenStack deployments, so its safe to run last version of the SDK against older OpenStack clouds. The installed version of the OpenStack SDK does not have to match your OpenStack cloud, but it has to match the release series of this collection which you are using. For notes about our release series and branches please read the introduction above.

Before using this collection, you have to install it with ansible-galaxy:

ansible-galaxy collection install openstack.cloud

You can also include it in a requirements.yml file:

collections:
- name: openstack.cloud

And then install it with:

ansible-galaxy collection install -r requirements.yml

Usage

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 the Ansible OpenStack Collection
  hosts: localhost
  collections:
    - openstack.cloud
  tasks:
    - server_volume:
        state: present
        cloud: openstack
        server: Mysql-server
        volume: mysql-data
        device: /dev/vdb

Ansible module defaults are supported as well:

---
- module_defaults:
    group/openstack.cloud.openstack:
      cloud: devstack-admin
    #
    #
    # Listing modules individually is required for
    # backward compatibility with Ansible 2.9 only
    openstack.cloud.compute_flavor_info:
      cloud: devstack-admin
    openstack.cloud.server_info:
      cloud: devstack-admin
  block:
    - name: List compute flavors
      openstack.cloud.compute_flavor_info:

    - name: List servers
      openstack.cloud.server_info:

Documentation

See collection docs at Ansible's main page:

Contributing

Thank you for your interest in our Ansible OpenStack collection ☺️

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

Please read our Contributions and Development Guide (⚠️) and our Review Guide (⚠️) before sending your first patch. Pull requests submitted through GitHub will be ignored.

Communication

We have a Special Interest Group for the Ansible OpenStack collection. Join us in #openstack-ansible-sig on OFTC IRC and ping Artem Goncharov artem.goncharov@gmail.com (gtema), Jakob Meng mail@jakobmeng.de (jm1) or Sagi Shnaidman sshnaidm@redhat.com (sshnaidm) 🍪

License

GNU General Public License v3.0 or later

See LICENCE to see the full text.