Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DO-NOT-MERGE: sdn-base to 9.8-stable 46e2320 #1428

Open
wants to merge 1 commit into
base: sdn-base
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 47 additions & 3 deletions docs/RELEASE-NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,59 @@
Release Notes for F5 Openstack Agent
====================================

v5.0.0
------
NOTE: special release.
v9.8.2 (Mitaka, Newton, Ocata, Pike, Queens)
--------------------------------------------
NOTE: This version of F5 Openstack Agent supports Mitaka, Newton, Ocata, Pike and Queens Openstack releases.

Added Functionality
```````````````````
* Enhanced Advanced Load Balancer(ALB).

- Added a switch to control whether or not b64decode 2 passwords

Bug Fixes
`````````

Limitations
```````````

v9.8.1 (Mitaka, Newton, Ocata, Pike, Queens)
--------------------------------------------
NOTE: This version of F5 Openstack Agent supports Mitaka, Newton, Ocata, Pike and Queens Openstack releases.

Added Functionality
```````````````````
* Enhanced Advanced Load Balancer(ALB).

- Added support for Queens
- Added some HPB code
- Enabled REGEX comparison type for l7 rules
- Added some IPv6 code


Bug Fixes
`````````

Limitations
```````````

v9.8.0 (Mitaka, Newton, Ocata, Pike)
------------------------------------
NOTE: This version of F5 Openstack Agent will support Mitaka, Newton, Ocata and Pike Openstack releases.

Added Functionality
```````````````````
* Enhanced Advanced Load Balancer(ALB).

Add 2 profile types support in Enhanced Service Definition(ESD):

- HTTP profile.
- OneConnect profile.

Bug Fixes
`````````
- Can not create selfip in both units using the same route domain ids.
- Deletes incorrect route domain.

Limitations
```````````
6 changes: 6 additions & 0 deletions docs/_static/config_examples/f5-openstack-agent.gre.ini
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,12 @@ icontrol_username = admin
#
icontrol_password = admin
#
# When password_cipher_mode is True, the password 'icontrol_password' and
# 'os_password' should be base64 encoded state. If not, they should be plain
# text.
#
password_cipher_mode = False
#
###############################################################################
# Certificate Manager
###############################################################################
Expand Down
2 changes: 2 additions & 0 deletions docs/_static/config_examples/f5-openstack-agent.grm.ini
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@ icontrol_username = USERNAME
#
icontrol_password = PASSWORD
#
password_cipher_mode = False
#
###############################################################################
# Certificate Manager
###############################################################################
Expand Down
6 changes: 6 additions & 0 deletions docs/_static/config_examples/f5-openstack-agent.vlan.ini
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,12 @@ icontrol_username = admin
#
icontrol_password = admin
#
# When password_cipher_mode is True, the password 'icontrol_password' and
# 'os_password' should be base64 encoded state. If not, they should be plain
# text.
#
password_cipher_mode = False
#
###############################################################################
# Certificate Manager
###############################################################################
Expand Down
2 changes: 2 additions & 0 deletions docs/_static/config_examples/f5-openstack-agent.vxlan.ini
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ icontrol_username = USERNAME
#
icontrol_password = PASSWORD
#
password_cipher_mode = False
#
###############################################################################
# Certificate Manager
###############################################################################
Expand Down
3 changes: 2 additions & 1 deletion docs/config-file.rst
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,8 @@ icontrol_username string The username of an a
objects
------------------------------- --------------------------- ----------------------------------- ------------------------------------------- ---------------------
icontrol_password string Password for the BIG-IP user See BIG-IP password requirements. N/A
account
account(encoded if password_ciphe
r_mode is True)
=============================== =========================== =================================== =========================================== =====================

.. index::
Expand Down
2 changes: 1 addition & 1 deletion docs/device-driver-settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Configuration
* :code:`icontrol_hostname`: The IP address(es) of the BIG-IP(s) the agent will manage. If you're using multiple devices, provide a comma-separated list containing the management IP address of each device.
* :code:`icontrol_vcmp_hostname`: The IP address(es) of the BIG-IP device(s) used for `vCMP`_
* :code:`icontrol_username`: The username of the adminstrative user; *must have access to all BIG-IP devices*.
* :code:`icontrol_password`: The password of the adminstrative user; *must have access to all BIG-IP devices*.
* :code:`icontrol_password`: The password of the adminstrative user; *must have access to all BIG-IP devices*; Should be base64-encoded if :code:`password_cipher_mode` is True.

.. code-block:: text

Expand Down
Loading