mirror of
https://github.com/vacp2p/cs-codex-dist-tests.git
synced 2025-02-24 08:18:20 +00:00
16 lines
467 B
C#
16 lines
467 B
C#
using DistTestCore.Marketplace;
|
|
using KubernetesWorkflow;
|
|
|
|
namespace DistTestCore.Codex
|
|
{
|
|
public class CodexStartupConfig
|
|
{
|
|
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; }
|
|
}
|
|
}
|