mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-13 20:46:37 +00:00
23 lines
666 B
C#
23 lines
666 B
C#
using DistTestCore.Marketplace;
|
|
using KubernetesWorkflow;
|
|
|
|
namespace DistTestCore.Codex
|
|
{
|
|
public class CodexStartupConfig
|
|
{
|
|
public CodexStartupConfig(CodexLogLevel logLevel)
|
|
{
|
|
LogLevel = logLevel;
|
|
}
|
|
|
|
public string? NameOverride { get; set; }
|
|
public Location Location { get; set; }
|
|
public CodexLogLevel LogLevel { get; }
|
|
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; }
|
|
}
|
|
}
|