2
0
mirror of synced 2025-02-13 08:56:30 +00:00
cs-codex-dist-tests/CodexPlugin/CodexStartupConfig.cs
2023-09-19 10:28:02 +02:00

20 lines
654 B
C#

using KubernetesWorkflow;
using Utils;
namespace CodexPlugin
{
public class CodexStartupConfig
{
public string? NameOverride { get; set; }
public Location Location { get; set; }
public CodexLogLevel LogLevel { get; set; }
public ByteSize? StorageQuota { get; set; }
public bool MetricsEnabled { get; set; }
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; }
}
}