Increase devnet ECS memory (#203)

* Increase devnet ECS memory

* decrease devnet ecs cpu
This commit is contained in:
Jerome 2022-10-30 13:38:23 +11:00 committed by GitHub
parent d50e01b7d8
commit 1ac3e9c8d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,9 +24,9 @@ resource "aws_ecs_task_definition" "devnet_task_definition_group" {
# New nodes will consume a lot more CPU usage than existing nodes.
# This is due to sync is resource heavy. Recommending set to below if doing sync:
# CPU = 2048, Memory = 4096
# Please set it back to cpu 512 and memory of 1024 after sync is done to save the cost
cpu = 512
memory = 1024
# Please set it back to cpu 512 and memory of 2048 after sync is done to save the cost
cpu = 256
memory = 2048
volume {
name = "efs"