summaryrefslogtreecommitdiffstats
path: root/flags
diff options
context:
space:
mode:
authorØyvind Grønnesby <oyving@verizonmedia.com>2021-06-18 11:10:57 +0200
committerGitHub <noreply@github.com>2021-06-18 11:10:57 +0200
commit04e1bb87eda8e51f499b16a80e9a768a5fe8c94c (patch)
tree2c3c53c0772c5c9a9e661522062be5ee75a28707 /flags
parenta883391edc005c7c635349b0279cf45b9055bc8a (diff)
parenta7fdcaa1c47d8b549d60a0e3616d142ea39b84b2 (diff)
Merge pull request #18284 from vespa-engine/ogronnesby/expire-idle-tenants
Expire trial tenants that have not logged in for 14 days
Diffstat (limited to 'flags')
-rw-r--r--flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java b/flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java
index 52b09a281d5..1b7f0c034a3 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java
@@ -163,6 +163,13 @@ public class PermanentFlags {
"Takes effect immediately, but any current excess rebuilds will not be cancelled"
);
+ public static final UnboundListFlag<String> EXTENDED_TRIAL_TENANTS = defineListFlag(
+ "extended-trial-tenants", List.of(), String.class,
+ "Tenants that will not be expired from their trial plan",
+ "Takes effect immediately, used by the CloudTrialExpirer maintainer",
+ TENANT_ID
+ );
+
private PermanentFlags() {}
private static UnboundBooleanFlag defineFeatureFlag(