Removes local debug help
This commit is contained in:
parent
aa9b667940
commit
acfd1f1f10
|
@ -52,7 +52,7 @@ namespace CodexNetDeployer
|
||||||
{
|
{
|
||||||
var lifecycleConfig = new DistTestCore.Configuration
|
var lifecycleConfig = new DistTestCore.Configuration
|
||||||
(
|
(
|
||||||
kubeConfigFile: null, //config.KubeConfigFile,
|
kubeConfigFile: config.KubeConfigFile,
|
||||||
logPath: "null",
|
logPath: "null",
|
||||||
logDebug: false,
|
logDebug: false,
|
||||||
dataFilesPath: "notUsed",
|
dataFilesPath: "notUsed",
|
||||||
|
@ -62,7 +62,7 @@ namespace CodexNetDeployer
|
||||||
|
|
||||||
var kubeConfig = new KubernetesWorkflow.Configuration(
|
var kubeConfig = new KubernetesWorkflow.Configuration(
|
||||||
k8sNamespacePrefix: config.KubeNamespace,
|
k8sNamespacePrefix: config.KubeNamespace,
|
||||||
kubeConfigFile: null, // config.KubeConfigFile,
|
kubeConfigFile: config.KubeConfigFile,
|
||||||
operationTimeout: timeset.K8sOperationTimeout(),
|
operationTimeout: timeset.K8sOperationTimeout(),
|
||||||
retryDelay: timeset.WaitForK8sServiceDelay());
|
retryDelay: timeset.WaitForK8sServiceDelay());
|
||||||
|
|
||||||
|
|
|
@ -10,16 +10,6 @@ public class Program
|
||||||
{
|
{
|
||||||
public static void Main(string[] args)
|
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;
|
var nl = Environment.NewLine;
|
||||||
Console.WriteLine("CodexNetDeployer" + nl + nl);
|
Console.WriteLine("CodexNetDeployer" + nl + nl);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue