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

31 lines
810 B
C#
Raw Normal View History

2023-04-12 11:53:55 +00:00
using System.Globalization;
using Utils;
2023-04-12 11:53:55 +00:00
namespace KubernetesWorkflow
{
public class RecipeComponentFactory
{
private NumberSource portNumberSource = new NumberSource(8080);
public Port CreatePort(int number, string tag, PortProtocol protocol)
2023-08-11 07:37:30 +00:00
{
return new Port(number, tag, protocol);
2023-08-11 07:37:30 +00:00
}
public Port CreatePort(string tag, PortProtocol protocol)
2023-04-12 11:53:55 +00:00
{
return new Port(portNumberSource.GetNextNumber(), tag, protocol);
2023-04-12 11:53:55 +00:00
}
public EnvVar CreateEnvVar(string name, int value)
{
return CreateEnvVar(name, value.ToString(CultureInfo.InvariantCulture));
}
public EnvVar CreateEnvVar(string name, string value)
{
return new EnvVar(name, value);
}
}
}