Fixed docs
Change-Id: I33953e9293a2ef2715bfcf076a262c474da40dc3
This commit is contained in:
parent
52e7bfe7a4
commit
122afc170c
@ -28,7 +28,7 @@ collection across several SDK releases.
|
|||||||
[ansible-tags]: https://docs.ansible.com/ansible/latest/user_guide/playbooks_tags.html
|
[ansible-tags]: https://docs.ansible.com/ansible/latest/user_guide/playbooks_tags.html
|
||||||
[openstacksdk-cloud-layer-stays]: https://meetings.opendev.org/irclogs/%23openstack-sdks/%23openstack-sdks.2022-04-27.log.html
|
[openstacksdk-cloud-layer-stays]: https://meetings.opendev.org/irclogs/%23openstack-sdks/%23openstack-sdks.2022-04-27.log.html
|
||||||
[openstacksdk-release-notes-zed]: https://docs.openstack.org/releasenotes/openstacksdk/zed.html
|
[openstacksdk-release-notes-zed]: https://docs.openstack.org/releasenotes/openstacksdk/zed.html
|
||||||
[openstacksdk-to-dict]: https://opendev.org/openstack/openstacksdk/src/branch/master/openstack/resource.py#L990
|
[openstacksdk-to-dict]: https://opendev.org/openstack/openstacksdk/src/branch/master/openstack/resource.py
|
||||||
[openstacksdk]: https://opendev.org/openstack/openstacksdk
|
[openstacksdk]: https://opendev.org/openstack/openstacksdk
|
||||||
|
|
||||||
## Notable changes between release series 2.x.x and 1.x.x
|
## Notable changes between release series 2.x.x and 1.x.x
|
||||||
|
@ -7,7 +7,7 @@ We, and the OpenStack community in general, use OpenDev for its development. Pat
|
|||||||
opendev-gerrit]. Pull requests submitted through GitHub will be ignored. Please read OpenStack's [Developer Workflow][
|
opendev-gerrit]. Pull requests submitted through GitHub will be ignored. Please read OpenStack's [Developer Workflow][
|
||||||
openstack-developer-workflow] for details.
|
openstack-developer-workflow] for details.
|
||||||
|
|
||||||
For hacking on the Ansible OpenStack collection it helps to [prepare a DevStack environment](DEVSTACK.md) first.
|
For hacking on the Ansible OpenStack collection it helps to [prepare a DevStack environment](devstack.md) first.
|
||||||
|
|
||||||
## Hosting
|
## Hosting
|
||||||
|
|
||||||
@ -27,7 +27,7 @@ openstacksdk], please read our [branching docs](branching.md).
|
|||||||
* For an example on how to write a `*_info` module, have a look at module
|
* For an example on how to write a `*_info` module, have a look at module
|
||||||
[`openstack.cloud.neutron_rbac_policies_info`](../plugins/modules/neutron_rbac_policies_info.py).
|
[`openstack.cloud.neutron_rbac_policies_info`](../plugins/modules/neutron_rbac_policies_info.py).
|
||||||
* For an example on how to write a regular non-`*_info` module, have a look at module
|
* For an example on how to write a regular non-`*_info` module, have a look at module
|
||||||
[`openstack.cloud.neutron_rbac_policies_info`](../plugins/modules/neutron_rbac_policies.py) or any other module which
|
[`openstack.cloud.neutron_rbac_policy`](../plugins/modules/neutron_rbac_policy.py) or any other module which
|
||||||
contains a `_will_change` method.
|
contains a `_will_change` method.
|
||||||
* Do NOT use modules which define a `_system_state_change` function as examples, because they often do not properly
|
* Do NOT use modules which define a `_system_state_change` function as examples, because they often do not properly
|
||||||
define Ansible's check mode, idempotency and/or updates. Refer to modules which define a `_will_change` function
|
define Ansible's check mode, idempotency and/or updates. Refer to modules which define a `_will_change` function
|
||||||
@ -144,7 +144,7 @@ openstacksdk], please read our [branching docs](branching.md).
|
|||||||
`federation_mapping_info` can be found in role `federation_mapping`.
|
`federation_mapping_info` can be found in role `federation_mapping`.
|
||||||
* Zuul CI jobs are defined in [`.zuul.yaml`](../.zuul.yaml).
|
* Zuul CI jobs are defined in [`.zuul.yaml`](../.zuul.yaml).
|
||||||
* Add assertions on return values from Ansible modules in integration tests. For an example, refer to
|
* Add assertions on return values from Ansible modules in integration tests. For an example, refer to
|
||||||
[`ci/roles/floating_ip_info/tasks/main.yml`](../ci/roles/floating_ip_info/tasks/main.yml).
|
[`ci/roles/floating_ip/tasks/main.yml`](../ci/roles/floating_ip/tasks/main.yml).
|
||||||
We need those checks to validate return values from [openstacksdk][openstacksdk], which might change across releases.
|
We need those checks to validate return values from [openstacksdk][openstacksdk], which might change across releases.
|
||||||
Adding those assertions will be done in minutes, while checking the output manually during code reviews takes much
|
Adding those assertions will be done in minutes, while checking the output manually during code reviews takes much
|
||||||
more time.
|
more time.
|
||||||
@ -184,6 +184,6 @@ Read [Release Guide](releasing.md) on how to publish new releases.
|
|||||||
[openstack-discuss]: http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-discuss
|
[openstack-discuss]: http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-discuss
|
||||||
[openstackclient]: https://docs.openstack.org/python-openstackclient/latest/
|
[openstackclient]: https://docs.openstack.org/python-openstackclient/latest/
|
||||||
[openstacksdk-cloud-layer-stays]: https://meetings.opendev.org/irclogs/%23openstack-sdks/%23openstack-sdks.2022-04-27.log.html
|
[openstacksdk-cloud-layer-stays]: https://meetings.opendev.org/irclogs/%23openstack-sdks/%23openstack-sdks.2022-04-27.log.html
|
||||||
[openstacksdk-to-dict]: https://opendev.org/openstack/openstacksdk/src/branch/master/openstack/resource.py#L990
|
[openstacksdk-to-dict]: https://opendev.org/openstack/openstacksdk/src/branch/master/openstack/resource.py
|
||||||
[openstacksdk]: https://opendev.org/openstack/openstacksdk
|
[openstacksdk]: https://opendev.org/openstack/openstacksdk
|
||||||
[storyboard]: https://storyboard.openstack.org/#!/project/openstack/ansible-collections-openstack
|
[storyboard]: https://storyboard.openstack.org/#!/project/openstack/ansible-collections-openstack
|
||||||
|
Loading…
x
Reference in New Issue
Block a user