Merge "Add SOURCE_IP_PORT to LB_ALGORITHM allowed values"

This commit is contained in:
Zuul 2020-11-06 09:04:38 +00:00 committed by Gerrit Code Review
commit 3b05f784a8
2 changed files with 6 additions and 2 deletions

View File

@ -99,8 +99,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.