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

[NodeJS18 Upgrade] [Windows Container] Adjust spare instance number for AL2023 and Windows Docker Host #345

Merged
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
12 changes: 6 additions & 6 deletions lib/compute/agent-nodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class AgentNodes {
instanceType: 'C54xlarge',
remoteUser: 'ec2-user',
maxTotalUses: -1,
minimumNumberOfSpareInstances: 4,
minimumNumberOfSpareInstances: 1,
numExecutors: 4,
amiId: 'ami-047328312ef36d12b',
initScript: 'sudo yum clean all && sudo rm -rf /var/cache/yum /var/lib/yum/history && sudo yum repolist &&'
Expand All @@ -80,7 +80,7 @@ export class AgentNodes {
instanceType: 'C54xlarge',
remoteUser: 'ec2-user',
maxTotalUses: -1,
minimumNumberOfSpareInstances: 1,
minimumNumberOfSpareInstances: 4,
numExecutors: 4,
amiId: 'ami-01dfbac890366ceda',
initScript: 'sudo dnf clean all && sudo rm -rf /var/cache/dnf && sudo dnf repolist &&'
Expand Down Expand Up @@ -108,7 +108,7 @@ export class AgentNodes {
instanceType: 'C6g4xlarge',
remoteUser: 'ec2-user',
maxTotalUses: -1,
minimumNumberOfSpareInstances: 4,
minimumNumberOfSpareInstances: 1,
numExecutors: 4,
amiId: 'ami-06ba4c81e8dd7ab49',
initScript: 'sudo yum clean all && sudo rm -rf /var/cache/yum /var/lib/yum/history && sudo yum repolist &&'
Expand All @@ -122,7 +122,7 @@ export class AgentNodes {
instanceType: 'C6g4xlarge',
remoteUser: 'ec2-user',
maxTotalUses: -1,
minimumNumberOfSpareInstances: 1,
minimumNumberOfSpareInstances: 4,
numExecutors: 4,
amiId: 'ami-05f03fae26b2fa72a',
initScript: 'sudo dnf clean all && sudo rm -rf /var/cache/dnf && sudo dnf repolist &&'
Expand Down Expand Up @@ -191,7 +191,7 @@ export class AgentNodes {
instanceType: 'C54xlarge',
remoteUser: 'Administrator',
maxTotalUses: -1,
minimumNumberOfSpareInstances: 2,
minimumNumberOfSpareInstances: 1,
numExecutors: 1,
amiId: 'ami-03b2c75c26036be68',
initScript: 'echo',
Expand All @@ -204,7 +204,7 @@ export class AgentNodes {
instanceType: 'C54xlarge',
remoteUser: 'Administrator',
maxTotalUses: -1,
minimumNumberOfSpareInstances: 2,
minimumNumberOfSpareInstances: 4,
numExecutors: 4,
amiId: 'ami-0a9759da263ce9304',
initScript: 'echo %USERNAME% && dockerd --register-service && net start docker && echo started docker deamon && docker ps && '
Expand Down
Loading