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 use-vespa-athenz-zms flag #32160

Merged
merged 1 commit into from
Aug 16, 2024
Merged
Changes from all commits
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
6 changes: 6 additions & 0 deletions flags/src/main/java/com/yahoo/vespa/flags/Flags.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ public class Flags {
"Takes effect on start of config server/controller.",
NODE_TYPE);

public static final UnboundBooleanFlag USE_VESPA_ATHENZ_ZMS = defineFeatureFlag(
"use-vespa-athenz-zms", false,
List.of("hakonhall"), "2024-08-16", "2024-10-16",
"Whether to communicate with Vespa Athenz ZMS instead of Yahoo Athenz ZMS in public systems.",
"Typically takes effect on start of config server/controller, or immediately for hosts (host-admin).");

public static final UnboundDoubleFlag DEFAULT_TERM_WISE_LIMIT = defineDoubleFlag(
"default-term-wise-limit", 1.0,
List.of("baldersheim"), "2020-12-02", "2024-12-31",
Expand Down