Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce aks node pool size to 1 #704

Closed
wants to merge 11 commits into from
2 changes: 1 addition & 1 deletion src/deploy-cromwell-on-azure/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public abstract class UserAccessibleConfiguration
public string AksCoANamespace { get; set; } = "coa";
public bool ManualHelmDeployment { get; set; }
public string HelmBinaryPath { get; set; } = OperatingSystem.IsWindows() ? @"C:\ProgramData\chocolatey\bin\helm.exe" : "/usr/local/bin/helm";
public int AksPoolSize { get; set; } = 2;
public int AksPoolSize { get; set; } = 1;
public bool? CrossSubscriptionAKSDeployment { get; set; } = null;
public bool Silent { get; set; }
public bool DeleteResourceGroupOnFailure { get; set; }
Expand Down