summaryrefslogtreecommitdiffstats
path: root/flags
diff options
context:
space:
mode:
authorAndreas Eriksen <andreer@verizonmedia.com>2020-10-16 07:04:45 +0200
committerGitHub <noreply@github.com>2020-10-16 07:04:45 +0200
commit9eced7520126471ec0845df53d192243130e8ff0 (patch)
tree3ec7d651ffe869b3a6a517d9873a1bf151d908dc /flags
parent301a89ed31557f920f48fbf5236663b159ee5dc6 (diff)
andreer/delete unused certs 1 (#14901)
* add delete cert method to endpoint certificate providers * delete unused certificates (guarded by feature flag)
Diffstat (limited to 'flags')
-rw-r--r--flags/src/main/java/com/yahoo/vespa/flags/Flags.java12
1 files changed, 3 insertions, 9 deletions
diff --git a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
index 3fd31f0fdd8..a87246df6e4 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
@@ -238,20 +238,14 @@ public class Flags {
"Takes effect on next node agent tick (but does not clear existing failure reports)",
HOSTNAME);
- public static final UnboundBooleanFlag USE_REFRESHED_ENDPOINT_CERTIFICATE = defineFeatureFlag(
- "use-refreshed-endpoint-certificate", false,
- "Whether an application should start using a newer certificate/key pair if available",
- "Takes effect on the next deployment of the application",
- APPLICATION_ID);
-
public static final UnboundBooleanFlag VALIDATE_ENDPOINT_CERTIFICATES = defineFeatureFlag(
"validate-endpoint-certificates", false,
"Whether endpoint certificates should be validated before use",
"Takes effect on the next deployment of the application");
- public static final UnboundStringFlag ENDPOINT_CERTIFICATE_BACKFILL = defineStringFlag(
- "endpoint-certificate-backfill", "disable",
- "Whether the endpoint certificate maintainer should backfill missing certificate data from cameo",
+ public static final UnboundStringFlag DELETE_UNUSED_ENDPOINT_CERTIFICATES = defineStringFlag(
+ "delete-unused-endpoint-certificates", "disable",
+ "Whether the endpoint certificate maintainer should delete unused certificates in cameo/zk",
"Takes effect on next scheduled run of maintainer - set to \"disable\", \"dryrun\" or \"enable\"");
public static final UnboundBooleanFlag USE_ALTERNATIVE_ENDPOINT_CERTIFICATE_PROVIDER = defineFeatureFlag(