community.general/lib/ansible/modules/cloud/openstack
Monty Taylor 574bcac277 Add developer docs for the OpenStack modules 2016-12-08 11:23:07 -05:00
..
README.md Add developer docs for the OpenStack modules 2016-12-08 11:23:07 -05:00
__init__.py added __init__.py to new cloud subcategories so builds work again 2016-12-08 11:22:25 -05:00
_glance_image.py Add OpenStack Image module 2016-12-08 11:23:05 -05:00
_nova_compute.py Add OpenStack Server module 2016-12-08 11:22:56 -05:00
_quantum_network.py Add OpenStack Network module 2016-12-08 11:23:00 -05:00
keystone_user.py undeprecated openstack modules as new ones are not making into release 2016-12-08 11:22:49 -05:00
nova_keypair.py undeprecated openstack modules as new ones are not making into release 2016-12-08 11:22:49 -05:00
os_auth.py minor docfixes 2016-12-08 11:22:53 -05:00
os_client_config.py AnsibleModule takes a dict as a param 2016-12-08 11:23:05 -05:00
os_image.py Update doc params and version_added 2016-12-08 11:23:05 -05:00
os_ironic.py Add Ironic module 2016-12-08 11:23:07 -05:00
os_ironic_node.py Add Ironic Node module 2016-12-08 11:23:07 -05:00
os_network.py Add missing state parameter 2016-12-08 11:23:04 -05:00
os_object.py Add OpenStack Object module 2016-12-08 11:23:07 -05:00
os_security_group.py Add OpenStack Security Group support 2016-12-08 11:23:07 -05:00
os_security_group_rule.py Add OpenStack Security Group support 2016-12-08 11:23:07 -05:00
os_server.py Update os_server for shade flavor API changes 2016-12-08 11:22:57 -05:00
os_server_actions.py Add an openstack servers actions module 2016-12-08 11:23:01 -05:00
os_server_facts.py Add OpenStack Server facts module 2016-12-08 11:22:55 -05:00
os_server_volume.py Update os_server_volume for latest shade 2016-12-08 11:22:56 -05:00
os_subnet.py Add missing state parameter 2016-12-08 11:23:04 -05:00
os_volume.py Update os_volume for latest shade 2016-12-08 11:22:56 -05:00
quantum_floating_ip.py Net_id already present, remove unnecessary lookup. 2016-12-08 11:22:55 -05:00
quantum_floating_ip_associate.py undeprecated openstack modules as new ones are not making into release 2016-12-08 11:22:49 -05:00
quantum_router.py undeprecated openstack modules as new ones are not making into release 2016-12-08 11:22:49 -05:00
quantum_router_gateway.py Revert "Add OpenStack Router Gateway module" 2016-12-08 11:22:52 -05:00
quantum_router_interface.py undeprecated openstack modules as new ones are not making into release 2016-12-08 11:22:49 -05:00
quantum_subnet.py Revert "Add deprecated documentation for _quantum_subnet" cause it was already added 2016-12-08 11:23:03 -05:00

README.md

OpenStack Ansible Modules

These are a set of modules for interacting with OpenStack as either an admin or an end user. If the module does not begin with os_, it's either deprecated or soon to be. This document serves as developer coding guidelines for modules intended to be here.

Naming

  • All modules should start with os_
  • If the module is one that a cloud consumer would expect to use, it should be named after the logical resource it manages. Thus, os_server not os_nova. The reasoning for this is that there are more than one resource that are managed by more than one service and which one manages it is a deployment detail. A good example of this are floating IPs, which can come from either Nova or Neutron, but which one they come from is immaterial to an end user.
  • If the module is one that a cloud admin would expect to use, it should be be named with the service and the resouce, such as os_keystone_domain.
  • If the module is one that a cloud admin and a cloud consumer could both use, the cloud consumer rules apply.

Interoperability

  • It should be assumed that the cloud consumer does not know a bazillion details about the deployment choices their cloud provider made, and a best effort should be made to present one sane interface to the ansible user regardless of deployer insanity.
  • All modules should work appropriately against all existing known public OpenStack clouds.
  • It should be assumed that a user may have more than one cloud account that they wish to combine as part of a single ansible managed infrastructure.

Libraries

  • All modules should use openstack_full_argument_spec to pick up the standard input such as auth and ssl support.
  • All modules should extends_documentation_fragment: openstack to go along with openstack_full_argument_spec.
  • All complex cloud interaction or interoperability code should be housed in the shade library.
  • All OpenStack API interactions should happen via shade and not via OpenStack Client libraries. The OpenStack Client libraries do no have end users as a primary audience, they are for intra-server communication. The python-openstacksdk is the future there, and shade will migrate to it when its ready in a manner that is not noticable to ansible users.