2
0
mirror of synced 2025-01-27 00:39:32 +00:00

19 lines
603 B
C#
Raw Normal View History

namespace KubernetesWorkflow
{
public class Configuration
{
public Configuration(string k8sNamespacePrefix, string? kubeConfigFile, TimeSpan operationTimeout, TimeSpan retryDelay)
{
2023-05-03 14:18:37 +02:00
K8sNamespacePrefix = k8sNamespacePrefix;
KubeConfigFile = kubeConfigFile;
OperationTimeout = operationTimeout;
RetryDelay = retryDelay;
}
2023-05-03 14:18:37 +02:00
public string K8sNamespacePrefix { get; }
public string? KubeConfigFile { get; }
public TimeSpan OperationTimeout { get; }
public TimeSpan RetryDelay { get; }
}
}