36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using KubernetesWorkflow;
|
|
|
|
namespace DistTestCore.Codex
|
|
{
|
|
public class CodexContainerRecipe : ContainerRecipeFactory
|
|
{
|
|
protected override string Image => "thatbenbierens/nim-codex:sha-b204837";
|
|
|
|
protected override void Initialize(StartupConfig startupConfig)
|
|
{
|
|
var config = startupConfig.Get<CodexStartupConfig>();
|
|
|
|
AddExposedPortAndVar("API_PORT");
|
|
AddEnvVar("DATA_DIR", $"datadir{ContainerNumber}");
|
|
AddInternalPortAndVar("DISC_PORT");
|
|
|
|
var listenPort = AddInternalPort();
|
|
AddEnvVar("LISTEN_ADDRS", $"/ip4/0.0.0.0/tcp/{listenPort.Number}");
|
|
|
|
if (config.LogLevel != null)
|
|
{
|
|
AddEnvVar("LOG_LEVEL", config.LogLevel.ToString()!.ToUpperInvariant());
|
|
}
|
|
if (config.StorageQuota != null)
|
|
{
|
|
AddEnvVar("STORAGE_QUOTA", config.StorageQuota.SizeInBytes.ToString()!);
|
|
}
|
|
if (config.MetricsEnabled)
|
|
{
|
|
AddEnvVar("METRICS_ADDR", "0.0.0.0");
|
|
AddInternalPortAndVar("METRICS_PORT");
|
|
}
|
|
}
|
|
}
|
|
}
|