mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-04 16:24:22 +00:00
19 lines
603 B
C#
19 lines
603 B
C#
namespace KubernetesWorkflow
|
|
{
|
|
public class Configuration
|
|
{
|
|
public Configuration(string k8sNamespacePrefix, string? kubeConfigFile, TimeSpan operationTimeout, TimeSpan retryDelay)
|
|
{
|
|
K8sNamespacePrefix = k8sNamespacePrefix;
|
|
KubeConfigFile = kubeConfigFile;
|
|
OperationTimeout = operationTimeout;
|
|
RetryDelay = retryDelay;
|
|
}
|
|
|
|
public string K8sNamespacePrefix { get; }
|
|
public string? KubeConfigFile { get; }
|
|
public TimeSpan OperationTimeout { get; }
|
|
public TimeSpan RetryDelay { get; }
|
|
}
|
|
}
|