cs-codex-dist-tests/DistTestCore/Codex/CodexStartupConfig.cs

16 lines
467 B
C#
Raw Normal View History

2023-04-13 07:33:10 +00:00
using KubernetesWorkflow;
namespace DistTestCore.Codex
2023-04-12 11:53:55 +00:00
{
public class CodexStartupConfig
{
public Location Location { get; set; }
public CodexLogLevel? LogLevel { get; set; }
public ByteSize? StorageQuota { get; set; }
public bool MetricsEnabled { get; set; }
2023-04-12 14:12:04 +00:00
//public IOnlineCodexNode? BootstrapNode { get; private set; }
//public MarketplaceInitialConfig? MarketplaceConfig { get; private set; }
2023-04-12 11:53:55 +00:00
}
}