-
Notifications
You must be signed in to change notification settings - Fork 98
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
feat(octavia): add pool edition view #10435
Conversation
37c1c64
to
58dc8fa
Compare
...tavia-load-balancer/src/load-balancers/load-balancer/pools/components/pool-form/constants.js
Outdated
Show resolved
Hide resolved
...avia-load-balancer/src/load-balancers/load-balancer/pools/components/pool-form/controller.js
Outdated
Show resolved
Hide resolved
const persistenceTypes = ['sourceIP', 'httpCookie', 'appCookie']; | ||
|
||
export const APP_COOKIE_SESSION_PERSISTENCE = persistenceTypes[2]; | ||
|
||
export const PROTOCOL_SESSION_PERSISTENCE_TYPE_COMBINATION = { | ||
http: persistenceTypes, | ||
https: persistenceTypes, | ||
tcp: persistenceTypes, | ||
proxy: persistenceTypes, | ||
proxyV2: persistenceTypes, | ||
udp: [persistenceTypes[0]], | ||
sctp: [persistenceTypes[0]], | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I didn't pay attention that some properties was already existing
const persistenceTypes = ['sourceIP', 'httpCookie', 'appCookie']; | |
export const APP_COOKIE_SESSION_PERSISTENCE = persistenceTypes[2]; | |
export const PROTOCOL_SESSION_PERSISTENCE_TYPE_COMBINATION = { | |
http: persistenceTypes, | |
https: persistenceTypes, | |
tcp: persistenceTypes, | |
proxy: persistenceTypes, | |
proxyV2: persistenceTypes, | |
udp: [persistenceTypes[0]], | |
sctp: [persistenceTypes[0]], | |
}; | |
export const DEFAULT_SESSION_PERSISTENCE_TYPE = 'sourceIP'; | |
eexport const APP_COOKIE_SESSION_PERSISTENCE = 'appCookie'; | |
const persistenceTypes = [ | |
DEFAULT_SESSION_PERSISTENCE_TYPE, | |
'httpCookie', | |
APP_COOKIE_SESSION_PERSISTENCE | |
]; | |
export const PROTOCOL_SESSION_PERSISTENCE_TYPE_COMBINATION = { | |
http: persistenceTypes, | |
https: persistenceTypes, | |
tcp: persistenceTypes, | |
proxy: persistenceTypes, | |
proxyV2: persistenceTypes, | |
udp: [DEFAULT_SESSION_PERSISTENCE_TYPE], | |
sctp: [DEFAULT_SESSION_PERSISTENCE_TYPE], | |
}; |
ref: MANAGER-12302 Signed-off-by: Jacques Larique <[email protected]>
Signed-off-by: CDS Translator Agent <[email protected]>
ref: MANAGER-12302 Signed-off-by: Jacques Larique <[email protected]>
ref: MANAGER-12302 Signed-off-by: Jacques Larique <[email protected]>
ref: MANAGER-12302 Signed-off-by: Jacques Larique <[email protected]>
ref: MANAGER-12302 Signed-off-by: Jacques Larique <[email protected]>
1777bcb
to
3a1a171
Compare
SonarCloud Quality Gate failed. 0 Bugs No Coverage information Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
ref: MANAGER-12302 Signed-off-by: Jacques Larique <[email protected]> Co-authored-by: CDS Translator Agent <[email protected]>
ref: MANAGER-12302 Signed-off-by: Jacques Larique <[email protected]> Co-authored-by: CDS Translator Agent <[email protected]>
feat/octavia-batch-1
Breaking change is mentioned in relevant commits(n/a)Description
Added pool edition page
Related