33 lines
950 B
C#
33 lines
950 B
C#
|
using KubernetesWorkflow;
|
|||
|
|
|||
|
namespace DistTestCore
|
|||
|
{
|
|||
|
public class Configuration
|
|||
|
{
|
|||
|
public KubernetesWorkflow.Configuration GetK8sConfiguration()
|
|||
|
{
|
|||
|
return new KubernetesWorkflow.Configuration(
|
|||
|
k8sNamespace: "codex-test-ns",
|
|||
|
kubeConfigFile: null,
|
|||
|
operationTimeout: Timing.K8sOperationTimeout(),
|
|||
|
retryDelay: Timing.K8sServiceDelay(),
|
|||
|
locationMap: new[]
|
|||
|
{
|
|||
|
new ConfigurationLocationEntry(Location.BensOldGamingMachine, "worker01"),
|
|||
|
new ConfigurationLocationEntry(Location.BensLaptop, "worker02"),
|
|||
|
}
|
|||
|
);
|
|||
|
}
|
|||
|
|
|||
|
public Logging.LogConfig GetLogConfig()
|
|||
|
{
|
|||
|
return new Logging.LogConfig("D:/CodexTestLogs");
|
|||
|
}
|
|||
|
|
|||
|
public string GetFileManagerFolder()
|
|||
|
{
|
|||
|
return "TestDataFiles";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|