cs-codex-dist-tests/DistTestCore/CodexStarter.cs

27 lines
629 B
C#
Raw Normal View History

2023-04-12 14:06:04 +00:00
using KubernetesWorkflow;
using Logging;
namespace DistTestCore
{
public class CodexStarter
{
private readonly WorkflowCreator workflowCreator;
public CodexStarter(TestLog log, Configuration configuration)
{
workflowCreator = new WorkflowCreator(configuration.GetK8sConfiguration());
}
public ICodexNodeGroup BringOnline(CodexSetupConfig codexSetupConfig)
{
}
public void DeleteAllResources()
{
var workflow = workflowCreator.CreateWorkflow();
workflow.DeleteAllResources();
}
}
}