cs-codex-dist-tests/CodexNetDeployer/Program.cs

61 lines
2.0 KiB
C#
Raw Normal View History

2023-06-22 07:51:25 +00:00
using CodexNetDeployer;
2023-06-22 08:17:12 +00:00
using DistTestCore;
2023-06-22 07:51:25 +00:00
using DistTestCore.Codex;
using DistTestCore.Marketplace;
2023-06-22 08:33:21 +00:00
using Utils;
2023-06-22 08:17:12 +00:00
using Configuration = CodexNetDeployer.Configuration;
2023-06-22 07:51:25 +00:00
public class Program
2023-06-22 06:29:33 +00:00
{
public static void Main(string[] args)
{
2023-06-22 07:51:25 +00:00
var nl = Environment.NewLine;
Console.WriteLine("CodexNetDeployer" + nl + nl);
var argOrVar = new ArgOrVar(args);
if (args.Any(a => a == "-h" || a == "--help" || a == "-?"))
{
argOrVar.PrintHelp();
return;
}
2023-06-22 08:17:12 +00:00
var location = TestRunnerLocation.ExternalToCluster;
if (args.Any(a => a == "--internal"))
{
location = TestRunnerLocation.InternalToCluster;
}
2023-06-22 07:51:25 +00:00
var config = new Configuration(
codexImage: argOrVar.Get(ArgOrVar.CodexImage, CodexContainerRecipe.DockerImage),
gethImage: argOrVar.Get(ArgOrVar.GethImage, GethContainerRecipe.DockerImage),
contractsImage: argOrVar.Get(ArgOrVar.ContractsImage, CodexContractsContainerRecipe.DockerImage),
kubeConfigFile: argOrVar.Get(ArgOrVar.KubeConfigFile),
kubeNamespace: argOrVar.Get(ArgOrVar.KubeNamespace),
numberOfCodexNodes: argOrVar.GetInt(ArgOrVar.NumberOfCodexNodes),
2023-06-22 08:17:12 +00:00
storageQuota: argOrVar.GetInt(ArgOrVar.StorageQuota),
2023-06-22 08:33:21 +00:00
codexLogLevel: ParseEnum.Parse<CodexLogLevel>(argOrVar.Get(ArgOrVar.LogLevel, nameof(CodexLogLevel.Debug))),
2023-06-22 08:17:12 +00:00
runnerLocation: location
2023-06-22 07:51:25 +00:00
);
Console.WriteLine("Using:");
config.PrintConfig();
Console.WriteLine(nl);
var errors = config.Validate();
if (errors.Any())
{
Console.WriteLine($"Configuration errors: ({errors.Count})");
foreach ( var error in errors ) Console.WriteLine("\t" + error);
Console.WriteLine(nl);
argOrVar.PrintHelp();
return;
}
2023-06-22 08:17:12 +00:00
var deployer = new Deployer(config);
deployer.Deploy();
2023-06-22 07:51:25 +00:00
2023-06-22 08:17:12 +00:00
Console.WriteLine("Done!");
2023-06-22 06:29:33 +00:00
}
}