mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-10 11:06:42 +00:00
17 lines
517 B
C#
17 lines
517 B
C#
using DistTestCore.Marketplace;
|
|
using KubernetesWorkflow;
|
|
|
|
namespace DistTestCore.Codex
|
|
{
|
|
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; }
|
|
}
|
|
}
|