2023-04-25 09:31:15 +00:00
|
|
|
|
using Logging;
|
|
|
|
|
using Utils;
|
2023-04-12 13:11:36 +00:00
|
|
|
|
|
|
|
|
|
namespace KubernetesWorkflow
|
2023-04-12 11:53:55 +00:00
|
|
|
|
{
|
|
|
|
|
public class WorkflowCreator
|
|
|
|
|
{
|
2023-04-12 13:11:36 +00:00
|
|
|
|
private readonly NumberSource numberSource = new NumberSource(0);
|
2023-04-13 09:07:36 +00:00
|
|
|
|
private readonly NumberSource containerNumberSource = new NumberSource(0);
|
2023-04-12 13:11:36 +00:00
|
|
|
|
private readonly KnownK8sPods knownPods = new KnownK8sPods();
|
2023-04-12 13:22:09 +00:00
|
|
|
|
private readonly K8sCluster cluster;
|
2023-09-12 08:31:55 +00:00
|
|
|
|
private readonly ILog log;
|
2023-09-12 12:50:18 +00:00
|
|
|
|
private readonly string k8sNamespace;
|
2023-04-12 13:22:09 +00:00
|
|
|
|
|
2023-09-12 12:50:18 +00:00
|
|
|
|
public WorkflowCreator(ILog log, Configuration configuration)
|
2023-04-12 13:22:09 +00:00
|
|
|
|
{
|
2023-04-25 09:31:15 +00:00
|
|
|
|
this.log = log;
|
2023-09-12 12:50:18 +00:00
|
|
|
|
|
|
|
|
|
cluster = new K8sCluster(configuration);
|
|
|
|
|
k8sNamespace = configuration.KubernetesNamespace.ToLowerInvariant();
|
2023-04-12 13:22:09 +00:00
|
|
|
|
}
|
2023-04-12 11:53:55 +00:00
|
|
|
|
|
2023-09-11 14:57:57 +00:00
|
|
|
|
public IStartupWorkflow CreateWorkflow()
|
2023-04-12 11:53:55 +00:00
|
|
|
|
{
|
2023-04-13 09:07:36 +00:00
|
|
|
|
var workflowNumberSource = new WorkflowNumberSource(numberSource.GetNextNumber(),
|
|
|
|
|
containerNumberSource);
|
2023-04-12 13:11:36 +00:00
|
|
|
|
|
2023-09-12 12:50:18 +00:00
|
|
|
|
return new StartupWorkflow(log, workflowNumberSource, cluster, knownPods, k8sNamespace);
|
2023-04-12 11:53:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|