mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-10 19:16:46 +00:00
20 lines
718 B
C#
20 lines
718 B
C#
using ArgsUniform;
|
|
using DistTestCore.Codex;
|
|
|
|
namespace CodexNetDownloader
|
|
{
|
|
public class Configuration
|
|
{
|
|
[Uniform("output-path", "o", "OUTPUT", true, "Path where files will be written.")]
|
|
public string OutputPath { get; set; } = "output";
|
|
|
|
[Uniform("codex-deployment", "c", "CODEXDEPLOYMENT", true, "Path to codex-deployment JSON file.")]
|
|
public string CodexDeploymentJson { get; set; } = string.Empty;
|
|
|
|
[Uniform("kube-config", "kc", "KUBECONFIG", true, "Path to Kubeconfig file. Use 'null' (default) to use local cluster.")]
|
|
public string KubeConfigFile { get; set; } = "null";
|
|
|
|
public CodexDeployment CodexDeployment { get; set; } = null!;
|
|
}
|
|
}
|