2023-04-12 13:22:09 +00:00
|
|
|
|
namespace KubernetesWorkflow
|
|
|
|
|
{
|
|
|
|
|
public class Configuration
|
|
|
|
|
{
|
2023-09-12 08:31:55 +00:00
|
|
|
|
public Configuration(string? kubeConfigFile, TimeSpan operationTimeout, TimeSpan retryDelay)
|
2023-04-12 13:22:09 +00:00
|
|
|
|
{
|
|
|
|
|
KubeConfigFile = kubeConfigFile;
|
|
|
|
|
OperationTimeout = operationTimeout;
|
|
|
|
|
RetryDelay = retryDelay;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string? KubeConfigFile { get; }
|
|
|
|
|
public TimeSpan OperationTimeout { get; }
|
|
|
|
|
public TimeSpan RetryDelay { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|