2023-04-14 08:51:35 +00:00
|
|
|
|
using DistTestCore.Marketplace;
|
|
|
|
|
using KubernetesWorkflow;
|
2023-04-13 07:33:10 +00:00
|
|
|
|
|
|
|
|
|
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-14 08:51:35 +00:00
|
|
|
|
public MarketplaceInitialConfig? MarketplaceConfig { get; set; }
|
2023-04-24 12:09:23 +00:00
|
|
|
|
public string? BootstrapSpr { get; set; }
|
2023-04-12 11:53:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|