mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4590ba4e59
There was a parameter in the docs called 'public_ip' that didn't actually exist. Additionally, auto_floating_ip is not consistent with the underlying parameter which is auto_ip - for no good reason. Add auto_ip as the real parameter, and then make public_ip and auto_floating_ip as aliases for it for backwards compatability. Fixes #2301 |
9 years ago | |
---|---|---|
.. | ||
README.md | 10 years ago | |
__init__.py | 10 years ago | |
_glance_image.py | 10 years ago | |
_nova_compute.py | 9 years ago | |
_nova_keypair.py | 10 years ago | |
_quantum_floating_ip.py | 10 years ago | |
_quantum_floating_ip_associate.py | 10 years ago | |
_quantum_network.py | 10 years ago | |
_quantum_router.py | 9 years ago | |
_quantum_router_gateway.py | 9 years ago | |
_quantum_router_interface.py | 9 years ago | |
_quantum_subnet.py | 10 years ago | |
keystone_user.py | 9 years ago | |
os_auth.py | 10 years ago | |
os_client_config.py | 9 years ago | |
os_floating_ip.py | 9 years ago | |
os_image.py | 10 years ago | |
os_image_facts.py | 9 years ago | |
os_ironic.py | 10 years ago | |
os_ironic_node.py | 10 years ago | |
os_keypair.py | 10 years ago | |
os_network.py | 9 years ago | |
os_networks_facts.py | 9 years ago | |
os_nova_flavor.py | 9 years ago | |
os_object.py | 10 years ago | |
os_port.py | 9 years ago | |
os_router.py | 9 years ago | |
os_security_group.py | 10 years ago | |
os_security_group_rule.py | 9 years ago | |
os_server.py | 9 years ago | |
os_server_actions.py | 9 years ago | |
os_server_facts.py | 10 years ago | |
os_server_volume.py | 10 years ago | |
os_subnet.py | 9 years ago | |
os_subnets_facts.py | 9 years ago | |
os_user_group.py | 10 years ago | |
os_volume.py | 10 years ago |
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.
Interface
- If the resource being managed has an id, it should be returned.
- If the resource being managed has an associated object more complex than an id, it should also be returned.
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.