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

Define disable-wg-conntrack flag #33146

Merged
merged 2 commits into from
Jan 21, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions flags/src/main/java/com/yahoo/vespa/flags/Flags.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ public class Flags {

private static volatile TreeMap<FlagId, FlagDefinition> flags = new TreeMap<>();

public static final UnboundBooleanFlag CLEAR_CONNTRACK = defineFeatureFlag(
"clear-conntrack", false,
List.of("hakonhall"), "2025-01-14", "2025-03-14",
"Whether to clear conntrack entries for a container",
"Takes effect immediately",
public static final UnboundBooleanFlag DISABLE_WG_CONNTRACK = defineFeatureFlag(
"disable-wg-conntrack", false,
List.of("hakonhall"), "2025-01-17", "2025-03-17",
"Disable connection tracking of WireGuard traffic",
"Takes effect on the next tick.",
HOSTNAME, NODE_TYPE);

public static final UnboundDoubleFlag DEFAULT_TERM_WISE_LIMIT = defineDoubleFlag(
Expand Down
Loading