cs-codex-dist-tests/Framework/KubernetesWorkflow/Recipe/ContainerRecipeFactory.cs

148 lines
5.2 KiB
C#
Raw Normal View History

2023-09-08 07:39:56 +00:00
using Utils;
namespace KubernetesWorkflow.Recipe
2023-04-12 11:53:55 +00:00
{
public abstract class ContainerRecipeFactory
{
private readonly List<Port> exposedPorts = new List<Port>();
private readonly List<Port> internalPorts = new List<Port>();
private readonly List<EnvVar> envVars = new List<EnvVar>();
private readonly PodLabels podLabels = new PodLabels();
private readonly PodAnnotations podAnnotations = new PodAnnotations();
private readonly List<VolumeMount> volumeMounts = new List<VolumeMount>();
2023-04-14 10:37:05 +00:00
private readonly List<object> additionals = new List<object>();
2023-04-12 11:53:55 +00:00
private RecipeComponentFactory factory = null!;
private ContainerResources resources = new ContainerResources();
2023-04-12 11:53:55 +00:00
2023-04-14 08:51:35 +00:00
public ContainerRecipe CreateRecipe(int index, int containerNumber, RecipeComponentFactory factory, StartupConfig config)
2023-04-12 11:53:55 +00:00
{
this.factory = factory;
ContainerNumber = containerNumber;
2023-04-14 08:51:35 +00:00
Index = index;
2023-04-12 11:53:55 +00:00
Initialize(config);
var recipe = new ContainerRecipe(containerNumber, config.NameOverride, Image, resources,
exposedPorts.ToArray(),
internalPorts.ToArray(),
envVars.ToArray(),
podLabels.Clone(),
podAnnotations.Clone(),
volumeMounts.ToArray(),
2023-09-20 08:13:29 +00:00
ContainerAdditionals.CreateFromUserData(additionals));
2023-04-13 08:11:33 +00:00
exposedPorts.Clear();
internalPorts.Clear();
envVars.Clear();
podLabels.Clear();
podAnnotations.Clear();
volumeMounts.Clear();
2023-04-14 10:37:05 +00:00
additionals.Clear();
2023-04-13 08:11:33 +00:00
this.factory = null!;
resources = new ContainerResources();
2023-04-13 08:11:33 +00:00
return recipe;
2023-04-12 11:53:55 +00:00
}
2023-08-07 13:51:44 +00:00
public abstract string AppName { get; }
public abstract string Image { get; }
2023-04-12 11:53:55 +00:00
protected int ContainerNumber { get; private set; } = 0;
2023-04-14 08:51:35 +00:00
protected int Index { get; private set; } = 0;
2023-04-12 11:53:55 +00:00
protected abstract void Initialize(StartupConfig config);
protected Port AddExposedPort(string tag, PortProtocol protocol = PortProtocol.TCP)
2023-04-12 11:53:55 +00:00
{
return AddExposedPort(factory.CreatePort(tag, protocol));
2023-04-12 11:53:55 +00:00
}
protected Port AddExposedPort(int number, string tag, PortProtocol protocol = PortProtocol.TCP)
2023-08-11 07:37:30 +00:00
{
return AddExposedPort(factory.CreatePort(number, tag, protocol));
2023-08-11 07:37:30 +00:00
}
protected Port AddInternalPort(string tag = "", PortProtocol protocol = PortProtocol.TCP)
2023-04-12 11:53:55 +00:00
{
var p = factory.CreatePort(tag, protocol);
2023-04-12 11:53:55 +00:00
internalPorts.Add(p);
return p;
}
protected void AddExposedPortAndVar(string name, string tag, PortProtocol protocol = PortProtocol.TCP)
2023-04-12 11:53:55 +00:00
{
AddEnvVar(name, AddExposedPort(tag, protocol));
2023-04-12 11:53:55 +00:00
}
protected void AddInternalPortAndVar(string name, string tag = "", PortProtocol protocol = PortProtocol.TCP)
2023-04-12 11:53:55 +00:00
{
AddEnvVar(name, AddInternalPort(tag, protocol));
2023-04-12 11:53:55 +00:00
}
protected void AddEnvVar(string name, string value)
{
envVars.Add(factory.CreateEnvVar(name, value));
}
protected void AddEnvVar(string name, Port value)
{
envVars.Add(factory.CreateEnvVar(name, value.Number));
}
2023-04-14 10:37:05 +00:00
protected void AddPodLabel(string name, string value)
{
podLabels.Add(name, value);
}
protected void AddPodAnnotation(string name, string value)
{
podAnnotations.Add(name, value);
}
protected void AddVolume(string name, string mountPath, string? subPath = null, string? secret = null, string? hostPath = null)
{
var size = 10.MB().ToSuffixNotation();
volumeMounts.Add(new VolumeMount(name, mountPath, subPath, size, secret, hostPath));
}
2023-09-08 07:39:56 +00:00
protected void AddVolume(string mountPath, ByteSize volumeSize)
{
volumeMounts.Add(new VolumeMount(
$"autovolume-{Guid.NewGuid().ToString().ToLowerInvariant()}",
mountPath,
resourceQuantity: volumeSize.ToSuffixNotation()));
}
2023-04-14 10:37:05 +00:00
protected void Additional(object userData)
{
additionals.Add(userData);
}
2023-09-15 13:52:02 +00:00
protected void SetResourcesRequest(int milliCPUs, ByteSize memory)
{
SetResourcesRequest(new ContainerResourceSet(milliCPUs, memory));
}
2023-11-07 08:25:51 +00:00
// Disabled following a possible bug in the k8s cluster that will throttle containers much more than is
// called for if they have resource limits defined.
//protected void SetResourceLimits(int milliCPUs, ByteSize memory)
//{
// SetResourceLimits(new ContainerResourceSet(milliCPUs, memory));
//}
protected void SetResourcesRequest(ContainerResourceSet requests)
{
resources.Requests = requests;
}
protected void SetResourceLimits(ContainerResourceSet limits)
{
resources.Limits = limits;
}
2023-09-15 13:52:02 +00:00
private Port AddExposedPort(Port port)
{
exposedPorts.Add(port);
return port;
}
2023-04-12 11:53:55 +00:00
}
}