cs-codex-dist-tests/Framework/KubernetesWorkflow/ContainerRecipe.cs

101 lines
3.1 KiB
C#
Raw Normal View History

2023-04-12 11:53:55 +00:00
namespace KubernetesWorkflow
{
public class ContainerRecipe
{
2023-09-20 08:13:29 +00:00
public ContainerRecipe(int number, string? nameOverride, string image, ContainerResources resources, Port[] exposedPorts, Port[] internalPorts, EnvVar[] envVars, PodLabels podLabels, PodAnnotations podAnnotations, VolumeMount[] volumes, ContainerAdditionals additionals)
2023-04-12 11:53:55 +00:00
{
Number = number;
2023-09-15 10:25:10 +00:00
NameOverride = nameOverride;
2023-04-12 11:53:55 +00:00
Image = image;
2023-09-08 11:47:49 +00:00
Resources = resources;
2023-04-12 11:53:55 +00:00
ExposedPorts = exposedPorts;
InternalPorts = internalPorts;
EnvVars = envVars;
PodLabels = podLabels;
PodAnnotations = podAnnotations;
Volumes = volumes;
2023-04-14 10:37:05 +00:00
Additionals = additionals;
2023-09-15 10:25:10 +00:00
if (NameOverride != null)
{
Name = $"{K8sNameUtils.Format(NameOverride)}-{Number}";
}
else
{
Name = $"ctnr{Number}";
}
2023-04-12 11:53:55 +00:00
}
2023-09-15 10:25:10 +00:00
public string Name { get; }
public int Number { get; }
2023-09-15 10:25:10 +00:00
public string? NameOverride { get; }
2023-09-08 11:47:49 +00:00
public ContainerResources Resources { get; }
2023-04-12 11:53:55 +00:00
public string Image { get; }
public Port[] ExposedPorts { get; }
public Port[] InternalPorts { get; }
public EnvVar[] EnvVars { get; }
public PodLabels PodLabels { get; }
public PodAnnotations PodAnnotations { get; }
public VolumeMount[] Volumes { get; }
2023-09-20 08:13:29 +00:00
public ContainerAdditionals Additionals { get; }
2023-04-13 12:36:17 +00:00
2023-09-13 09:59:21 +00:00
public Port? GetPortByTag(string tag)
2023-04-13 12:36:17 +00:00
{
2023-09-13 09:59:21 +00:00
return ExposedPorts.Concat(InternalPorts).SingleOrDefault(p => p.Tag == tag);
2023-04-13 12:36:17 +00:00
}
public override string ToString()
{
return $"(container-recipe: {Name}, image: {Image}, " +
$"exposedPorts: {string.Join(",", ExposedPorts.Select(p => p.Number))}, " +
$"internalPorts: {string.Join(",", InternalPorts.Select(p => p.Number))}, " +
$"envVars: {string.Join(",", EnvVars.Select(v => v.ToString()))}, " +
2023-09-08 11:47:49 +00:00
$"limits: {Resources}, " +
$"volumes: {string.Join(",", Volumes.Select(v => $"'{v.MountPath}'"))}";
}
2023-04-12 11:53:55 +00:00
}
public class Port
{
2023-04-13 12:36:17 +00:00
public Port(int number, string tag)
2023-04-12 11:53:55 +00:00
{
Number = number;
2023-04-13 12:36:17 +00:00
Tag = tag;
2023-04-12 11:53:55 +00:00
}
public int Number { get; }
2023-04-13 12:36:17 +00:00
public string Tag { get; }
2023-04-12 11:53:55 +00:00
}
public class EnvVar
{
public EnvVar(string name, string value)
{
Name = name;
Value = value;
}
public string Name { get; }
public string Value { get; }
public override string ToString()
{
return $"'{Name}' = '{Value}'";
}
2023-04-12 11:53:55 +00:00
}
public class VolumeMount
{
public VolumeMount(string volumeName, string mountPath, string resourceQuantity)
{
VolumeName = volumeName;
MountPath = mountPath;
ResourceQuantity = resourceQuantity;
}
public string VolumeName { get; }
public string MountPath { get; }
public string ResourceQuantity { get; }
}
2023-04-12 11:53:55 +00:00
}