From acfd1f1f101a2c8d8d845d75bad49f56c0e4ee01 Mon Sep 17 00:00:00 2001 From: benbierens Date: Fri, 23 Jun 2023 08:45:16 +0200 Subject: [PATCH] Removes local debug help --- CodexNetDeployer/Deployer.cs | 4 ++-- CodexNetDeployer/Program.cs | 10 ---------- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/CodexNetDeployer/Deployer.cs b/CodexNetDeployer/Deployer.cs index b6a1df2..a5aa56b 100644 --- a/CodexNetDeployer/Deployer.cs +++ b/CodexNetDeployer/Deployer.cs @@ -52,7 +52,7 @@ namespace CodexNetDeployer { var lifecycleConfig = new DistTestCore.Configuration ( - kubeConfigFile: null, //config.KubeConfigFile, + kubeConfigFile: config.KubeConfigFile, logPath: "null", logDebug: false, dataFilesPath: "notUsed", @@ -62,7 +62,7 @@ namespace CodexNetDeployer var kubeConfig = new KubernetesWorkflow.Configuration( k8sNamespacePrefix: config.KubeNamespace, - kubeConfigFile: null, // config.KubeConfigFile, + kubeConfigFile: config.KubeConfigFile, operationTimeout: timeset.K8sOperationTimeout(), retryDelay: timeset.WaitForK8sServiceDelay()); diff --git a/CodexNetDeployer/Program.cs b/CodexNetDeployer/Program.cs index 8c29f3d..462667c 100644 --- a/CodexNetDeployer/Program.cs +++ b/CodexNetDeployer/Program.cs @@ -10,16 +10,6 @@ public class Program { public static void Main(string[] args) { - args = new[] - { - @"--kube-config=C:\Users\Ben\.kube\codex-tests-ams3-dev-kubeconfig.yaml", - "--kube-namespace=testing-deployer", - "--nodes=5", - "--validators=3", - "--storage-quota=1024", - "--external" - }; - var nl = Environment.NewLine; Console.WriteLine("CodexNetDeployer" + nl + nl);