mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-20 22:23:08 +00:00
14 lines
397 B
C#
14 lines
397 B
C#
|
|
namespace KubernetesWorkflow
|
|||
|
|
{
|
|||
|
|
public class WorkflowCreator
|
|||
|
|
{
|
|||
|
|
private readonly NumberSource containerNumberSource = new NumberSource(0);
|
|||
|
|
private readonly K8sController controller = new K8sController(new K8sCluster());
|
|||
|
|
|
|||
|
|
public StartupWorkflow CreateWorkflow()
|
|||
|
|
{
|
|||
|
|
return new StartupWorkflow(containerNumberSource, controller);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|