Skip to content

Commit

Permalink
Merge pull request #33004 from vespa-engine/marlon/add-use-legacy-sto…
Browse files Browse the repository at this point in the history
…re-flag

feat: Add flag for legacy trust store option
  • Loading branch information
freva authored Dec 6, 2024
2 parents 45b5880 + 8920d55 commit abb96af
Showing 1 changed file with 6 additions and 0 deletions.
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 @@ -496,6 +496,12 @@ public class Flags {
"Takes after controller restart",
SYSTEM);

public static final UnboundBooleanFlag USE_LEGACY_STORE = defineFeatureFlag(
"use-legacy-trust-store", true,
List.of("marlon"), "2024-12-05", "2025-02-01",
"Use legacy trust store for CA, or new one",
"Takes effect on restart of OCI containers");

/** WARNING: public for testing: All flags should be defined in {@link Flags}. */
public static UnboundBooleanFlag defineFeatureFlag(String flagId, boolean defaultValue, List<String> owners,
String createdAt, String expiresAt, String description,
Expand Down

0 comments on commit abb96af

Please sign in to comment.