cs-codex-dist-tests/ContinuousTests/K8sFactory.cs

42 lines
1.6 KiB
C#
Raw Normal View History

2023-06-28 13:11:20 +00:00
using DistTestCore.Codex;
using DistTestCore;
using KubernetesWorkflow;
using Logging;
namespace ContinuousTests
{
public class K8sFactory
{
public (WorkflowCreator, TestLifecycle) CreateFacilities(string kubeConfigFile, string logPath, string dataFilePath, string customNamespace, ITimeSet timeSet, BaseLog log, TestRunnerLocation runnerLocation)
2023-06-28 13:11:20 +00:00
{
var kubeConfig = GetKubeConfig(kubeConfigFile);
2023-06-28 13:11:20 +00:00
var lifecycleConfig = new DistTestCore.Configuration
(
kubeConfigFile: kubeConfig,
logPath: logPath,
2023-06-28 13:11:20 +00:00
logDebug: false,
dataFilesPath: dataFilePath,
2023-06-28 13:11:20 +00:00
codexLogLevel: CodexLogLevel.Debug,
runnerLocation: runnerLocation
2023-06-28 13:11:20 +00:00
);
var kubeFlowConfig = new KubernetesWorkflow.Configuration(
k8sNamespacePrefix: customNamespace,
kubeConfigFile: kubeConfig,
2023-06-28 13:11:20 +00:00
operationTimeout: timeSet.K8sOperationTimeout(),
retryDelay: timeSet.WaitForK8sServiceDelay());
var workflowCreator = new WorkflowCreator(log, kubeFlowConfig, testNamespacePostfix: string.Empty);
var lifecycle = new TestLifecycle(log, lifecycleConfig, timeSet, workflowCreator);
return (workflowCreator, lifecycle);
}
private static string? GetKubeConfig(string kubeConfigFile)
{
if (string.IsNullOrEmpty(kubeConfigFile) || kubeConfigFile.ToLowerInvariant() == "null") return null;
return kubeConfigFile;
}
}
}