Add support for SOURCE_IP_PORT algorithm

This patch adds support for SOURCE_IP_PORT algorithm.

Story: 2006264
Task: 35969

Depends-On: https://review.opendev.org/#/c/672463/
Change-Id: If5c61fd9b215c5f60d527ab1667e576807bac1ed
This commit is contained in:
Maciej Józefczyk 2019-07-24 07:50:25 +00:00 committed by Michael Johnson
parent fdedbad9a8
commit 2e8105e37c
2 changed files with 6 additions and 1 deletions

View File

@ -24,7 +24,8 @@ from octaviaclient.osc.v2 import utils as v2_utils
PROTOCOL_CHOICES = ['TCP', 'HTTP', 'HTTPS', 'TERMINATED_HTTPS', 'PROXY',
'UDP']
ALGORITHM_CHOICES = ['SOURCE_IP', 'ROUND_ROBIN', 'LEAST_CONNECTIONS']
ALGORITHM_CHOICES = ['SOURCE_IP', 'ROUND_ROBIN', 'LEAST_CONNECTIONS',
'SOURCE_IP_PORT']
class CreatePool(command.ShowOne):

View File

@ -0,0 +1,4 @@
---
features:
- |
Adds client support for SOURCE_IP_PORT algorithm.