Ansible Modules Collection for using OpenStack
Go to file
Steve Baker 93d51498e9 CI: Don't create port with binding profile
Creating a port with a binding profile now requires a user with the
service role. This fixes CI by removing the tasks which create a port
with a binding profile. The new policy implies that only other openstack
services should be doing this. The capability can remain in the module,
but it is unlikely to be used unless with a custom or deprecated policy.

Change-Id: I89306d35670503d2fc8e76c030d88f64c20eca08
2024-03-13 14:21:14 +13:00
changelogs Prepare release 2.2.0 2023-12-01 17:29:42 +01:00
ci CI: Don't create port with binding profile 2024-03-13 14:21:14 +13:00
docs Pivoted docs to generic resource{,s} modules and StateMachine class 2023-01-26 13:35:45 +01:00
meta Add baremetal_deploy_template module 2023-03-28 12:05:38 +00:00
plugins Merge "Fix port_security_enabled key for port module" 2023-10-17 09:28:52 +00:00
tests Fix linters for mocking 2023-08-15 20:16:31 +02:00
tools CI: Fix linters-devel and devstack tests 2024-01-19 17:42:23 +00: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 Migrate Bifrost jobs to Ubuntu Jammy 2023-12-19 12:53:18 +01:00
CHANGELOG.rst Prepare release 2.2.0 2023-12-01 17:29:42 +01:00
COPYING Fix license metadata 2020-03-05 15:08:38 +00:00
README.md Highlight our mode of operation more prominently 2023-03-30 10:02:46 +02:00
bindep.txt Add bindep.txt for ansible-builder 2021-05-19 14:04:33 -04:00
galaxy.yml Prepare release 2.2.0 2023-12-01 17:29:42 +01:00
galaxy.yml.in Dropped obsolete module templates 2022-12-10 14:24:27 +01:00
requirements.txt Bump minimum required openstacksdk release to 1.0.0 2023-01-31 19:52:01 +01:00
setup.cfg Dropped unmaintained, obsolete and broken inventory script 2023-01-28 14:18:08 +01: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 10:38:58 +01:00

README.md

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.

NOTE: We need and value your contributions! Maintaining this collection is a community effort. We are all both users and developers of this collection at the same time. If you find a bug, please report it. If you have fixed a bug, please submit a patch. If you need new functionality which is not covered by this collection yet, please extend an existing module or submit a new one. Our Contributing section below has tons of docs to check out. Please get in touch!

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>=1.0.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 Ansible OpenStack collection, call them by their Fully Qualified Collection Name (FQCN), composed of their namespace, collection name and module name:

---
- hosts: localhost
  tasks:
    - name: Create server in an OpenStack cloud
      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:

---
- hosts: localhost
  collections:
    - openstack.cloud
  tasks:
    - name: Create server in an OpenStack cloud
      server_volume:
        state: present
        cloud: openstack
        server: Mysql-server
        volume: mysql-data
        device: /dev/vdb

For powerful generic CRUD-style resource management use Ansible module openstack.cloud.resource:

---
- hosts: localhost
  tasks:
    - name: Create security group
      openstack.cloud.resource:
        cloud: openstack
        service: network
        type: security_group
        attributes:
          name: ansible_security_group
          description: 'ansible security group'

    - name: Update security group description
      openstack.cloud.resource:
        cloud: openstack
        service: network
        type: security_group
        attributes:
          name: ansible_security_group
          description: 'ansible neutron security group'

    - name: Delete security group
      openstack.cloud.resource:
        cloud: openstack
        service: network
        type: security_group
        attributes:
          name: ansible_security_group
        state: absent

For generic resource listing use Ansible module openstack.cloud.resources:

---
- hosts: localhost
  tasks:
    - name: List images
      openstack.cloud.resources:
        cloud: openstack
        service: image
        type: image

    - name: List compute flavors
      openstack.cloud.resources:
        cloud: openstack
        service: compute
        type: flavor

    - name: List networks with name 'public'
      openstack.cloud.resources:
        cloud: openstack
        service: network
        type: network
        parameters:
          name: public

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 🍪

License

GNU General Public License v3.0 or later

See LICENCE to see the full text.