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

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/deploy-cromwell-on-azure/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public abstract class UserAccessibleConfiguration
public string SubscriptionId { get; set; }
public string RegionName { get; set; }
public string MainIdentifierPrefix { get; set; } = "coa";
public string VmSize { get; set; } = "Standard_D4s_v3";
public string VmSize { get; set; } = "Standard_B4ms";
public string VnetAddressSpace { get; set; } = "10.1.0.0/16"; // 10.1.0.0 - 10.1.255.255, 65536 IPs
// Address space for CoA services.
public string VmSubnetAddressSpace { get; set; } = "10.1.0.0/24"; // 10.1.0.0 - 10.1.0.255, 256 IPs
Expand All @@ -60,7 +60,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
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ spec:
- containerPort: {{ .Values.service.cromwellPort }}
resources:
requests:
cpu: "1.0"
memory: "1024Mi"
cpu: "1"
memory: "1Gi"
limits:
cpu: "8.0"
cpu: "4.0"
memory: "4096Mi"
securityContext:
allowPrivilegeEscalation: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,11 @@ spec:
- containerPort: {{ .Values.service.tesPort }}
resources:
requests:
cpu: "1.5"
memory: "3072Mi"
cpu: "1.0"
memory: "1Gi"
limits:
cpu: "8.0"
memory: "8192Mi"
cpu: "2.0"
memory: "4Gi"
securityContext:
allowPrivilegeEscalation: false
capabilities:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ spec:
name: triggerservice
resources:
requests:
cpu: "0.5"
cpu: "0.25"
memory: "256Mi"
limits:
cpu: "2.0"
cpu: "1.0"
memory: "1024Mi"
securityContext:
allowPrivilegeEscalation: false
Expand Down
Loading