2
0
mirror of synced 2025-02-05 05:04:17 +00:00
cs-codex-dist-tests/DistTestCore/Codex/CodexStartupConfig.cs

22 lines
623 B
C#
Raw Normal View History

2023-04-14 10:51:35 +02:00
using DistTestCore.Marketplace;
using KubernetesWorkflow;
2023-04-13 09:33:10 +02:00
namespace DistTestCore.Codex
2023-04-12 13:53:55 +02:00
{
public class CodexStartupConfig
{
2023-05-31 13:34:12 +02:00
public CodexStartupConfig(CodexLogLevel logLevel)
{
LogLevel = logLevel;
}
public string? NameOverride { get; set; }
2023-04-12 13:53:55 +02:00
public Location Location { get; set; }
2023-05-31 13:34:12 +02:00
public CodexLogLevel LogLevel { get; }
2023-04-12 13:53:55 +02:00
public ByteSize? StorageQuota { get; set; }
public bool MetricsEnabled { get; set; }
2023-04-14 10:51:35 +02:00
public MarketplaceInitialConfig? MarketplaceConfig { get; set; }
public string? BootstrapSpr { get; set; }
2023-04-12 13:53:55 +02:00
}
}