20 lines
654 B
C#
Raw Normal View History

using KubernetesWorkflow;
2023-09-08 09:39:56 +02:00
using Utils;
2023-04-13 09:33:10 +02:00
namespace CodexPlugin
2023-04-12 13:53:55 +02:00
{
public class CodexStartupConfig
{
public string? NameOverride { get; set; }
2023-04-12 13:53:55 +02:00
public Location Location { get; set; }
public CodexLogLevel LogLevel { get; set; }
2023-04-12 13:53:55 +02:00
public ByteSize? StorageQuota { get; set; }
2023-09-13 11:59:21 +02:00
public bool MetricsEnabled { get; set; }
2023-09-19 10:24:43 +02:00
public MarketplaceInitialConfig? MarketplaceConfig { get; set; }
public string? BootstrapSpr { get; set; }
public int? BlockTTL { get; set; }
public TimeSpan? BlockMaintenanceInterval { get; set; }
public int? BlockMaintenanceNumber { get; set; }
2023-04-12 13:53:55 +02:00
}
}