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

feat(octavia): add pool edition view #10435

Merged
merged 6 commits into from
Dec 4, 2023

Conversation

JacquesLarique
Copy link
Contributor

Question Answer
Branch? feat/octavia-batch-1
Bug fix? no
New feature? yes
Breaking change? no
Tickets MANAGER-12302
License BSD 3-Clause
  • Try to keep pull requests small so they can be easily reviewed.
  • Commits are signed-off
  • Only FR translations have been updated
  • Branch is up-to-date with target branch
  • Lint has passed locally
  • Standalone app was ran and tested locally
  • Ticket reference is mentioned in linked commits (internal only)
  • Breaking change is mentioned in relevant commits (n/a)

Description

Added pool edition page

Related

@JacquesLarique JacquesLarique requested a review from a team as a code owner November 30, 2023 18:02
@JacquesLarique JacquesLarique requested review from dectotam, darsene and sachinrameshn and removed request for a team November 30, 2023 18:02
@github-actions github-actions bot added translation required feature New feature has conflicts Has conflicts to resolve before merging labels Nov 30, 2023
@github-actions github-actions bot removed the has conflicts Has conflicts to resolve before merging label Dec 1, 2023
Comment on lines 5 to 21
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]],
};
Copy link
Contributor

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

Suggested change
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],
};

@github-actions github-actions bot added the has conflicts Has conflicts to resolve before merging label Dec 1, 2023
Jacques Larique added 6 commits December 1, 2023 17:57
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]>
@github-actions github-actions bot removed the has conflicts Has conflicts to resolve before merging label Dec 1, 2023
Copy link

sonarqubecloud bot commented Dec 1, 2023

SonarCloud Quality Gate failed.    Quality Gate failed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
7.6% 7.6% Duplication

idea Catch issues before they fail your Quality Gate with our IDE extension sonarlint SonarLint

@JacquesLarique JacquesLarique merged commit debae19 into feat/octavia-batch-1 Dec 4, 2023
10 of 13 checks passed
@JacquesLarique JacquesLarique deleted the feat/MANAGER-12302 branch December 4, 2023 09:13
JacquesLarique added a commit that referenced this pull request Jan 9, 2024
ref: MANAGER-12302

Signed-off-by: Jacques Larique <[email protected]>
Co-authored-by: CDS Translator Agent <[email protected]>
JacquesLarique added a commit that referenced this pull request Feb 5, 2024
ref: MANAGER-12302

Signed-off-by: Jacques Larique <[email protected]>
Co-authored-by: CDS Translator Agent <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants