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

Provision single vm nodepool only, switch to burstable sku #611

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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-tes-on-azure/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public abstract class UserAccessibleConfiguration
public string SubscriptionId { get; set; }
public string RegionName { get; set; }
public string MainIdentifierPrefix { get; set; } = "tes";
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 TES services.
public string VmSubnetAddressSpace { get; set; } = "10.1.0.0/24"; // 10.1.0.0 - 10.1.0.255, 256 IPs
Expand All @@ -52,7 +52,7 @@ public abstract class UserAccessibleConfiguration
public bool ManualHelmDeployment { get; set; }
public string HelmBinaryPath { get; set; } = OperatingSystem.IsWindows() ? @"C:\ProgramData\chocolatey\bin\helm.exe" : "/usr/local/bin/helm";
public string KubectlBinaryPath { get; set; } = OperatingSystem.IsWindows() ? @"C:\ProgramData\chocolatey\bin\kubectl.exe" : "/usr/local/bin/kubectl";
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 @@ -106,8 +106,8 @@ spec:
- containerPort: {{ .Values.service.tesPort }}
resources:
requests:
cpu: "1.5"
memory: "3072Mi"
cpu: "0.5"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1.0

memory: "256Mi"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1Gi

limits:
cpu: "8.0"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2.0

memory: "8192Mi"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

4Gi

Expand Down
Loading