Removes local debug help
This commit is contained in:
parent
aa9b667940
commit
acfd1f1f10
|
@ -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());
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue