Merge "Add SOURCE_IP_PORT to LB_ALGORITHM allowed values" into stable/train

This commit is contained in:
Zuul 2021-04-19 08:45:11 +00:00 committed by Gerrit Code Review
commit 2887022f57
2 changed files with 6 additions and 2 deletions

View File

@ -97,8 +97,8 @@ class Pool(octavia_base.OctaviaBase):
'the pool.'),
required=True,
constraints=[
constraints.AllowedValues(['ROUND_ROBIN',
'LEAST_CONNECTIONS', 'SOURCE_IP']),
constraints.AllowedValues(['ROUND_ROBIN', 'LEAST_CONNECTIONS',
'SOURCE_IP', 'SOURCE_IP_PORT']),
],
update_allowed=True,
),

View File

@ -0,0 +1,4 @@
---
features:
- The ``lb_algorithm`` property of ``OS::Octavia::Pool`` resource now supports
SOURCE_IP_PORT option required for Octavia OVN provider driver.