diff options
| author | Jenkins <jenkins@review.openstack.org> | 2016-03-16 05:18:57 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2016-03-16 05:18:57 +0000 |
| commit | add66dc132b6fd14f2ff599137464a73743eb9be (patch) | |
| tree | 3b673e98e68a999ce1e902d0cd88a7e37755cf9d /doc/source | |
| parent | e49c3f6682a3c59cdee2dad58ab6fe6bb8c170cf (diff) | |
| parent | 515cc87174e1ea150c77e63bb8e17b007dde44d1 (diff) | |
| download | python-openstackclient-add66dc132b6fd14f2ff599137464a73743eb9be.tar.gz | |
Merge "Add incompatibility info for "ip floating list" command"
Diffstat (limited to 'doc/source')
| -rw-r--r-- | doc/source/backwards-incompatible.rst | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/source/backwards-incompatible.rst b/doc/source/backwards-incompatible.rst index bb2b0bdd..4b90d6e1 100644 --- a/doc/source/backwards-incompatible.rst +++ b/doc/source/backwards-incompatible.rst @@ -162,6 +162,36 @@ List of Backwards Incompatible Changes * Bug: https://bugs.launchpad.net/python-openstackclient/+bug/1546065 * Commit: https://review.openstack.org/#/c/281089/ +14. Output of `ip floating list` command has changed. + + When using Compute v2, the original output of `ip floating list` command is: + +----+--------+------------+----------+-------------+ + | ID | Pool | IP | Fixed IP | Instance ID | + +----+--------+-----------------------+-------------+ + | 1 | public | 172.24.4.1 | None | None | + +----+--------+------------+----------+-------------+ + + Now it changes to: + +----+---------------------+------------------+-----------+--------+ + | ID | Floating IP Address | Fixed IP Address | Server ID | Pool | + +----+---------------------+------------------+-----------+--------+ + | 1 | 172.24.4.1 | None | None | public | + +----+---------------------+------------------+-----------+--------+ + + When using Network v2, the output of `ip floating list` command is: + +--------------------------------------+---------------------+------------------+------+ + | ID | Floating IP Address | Fixed IP Address | Port | + +--------------------------------------+---------------------+------------------+------+ + | 1976df86-e66a-4f96-81bd-c6ffee6407f1 | 172.24.4.3 | None | None | + +--------------------------------------+---------------------+------------------+------+ + which is different from Compute v2. + + * In favor of: Use `ip floating list` command + * As of: NA + * Removed in: NA + * Bug: https://bugs.launchpad.net/python-openstackclient/+bug/1519502 + * Commit: https://review.openstack.org/#/c/277720/ + For Developers ============== |
