Skip to content

Commit

Permalink
Add new fargate capacity options
Browse files Browse the repository at this point in the history
  • Loading branch information
ipmb committed Sep 16, 2022
1 parent b3a7c5a commit 1efc25d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,35 @@ var FargateSupportedConfigurations = []ECSSizeConfiguration{
{CPU: 4 * 1024, Memory: 28 * 1024},
{CPU: 4 * 1024, Memory: 29 * 1024},
{CPU: 4 * 1024, Memory: 30 * 1024},
{CPU: 8 * 1024, Memory: 16 * 1024},
{CPU: 8 * 1024, Memory: 20 * 1024},
{CPU: 8 * 1024, Memory: 24 * 1024},
{CPU: 8 * 1024, Memory: 28 * 1024},
{CPU: 8 * 1024, Memory: 32 * 1024},
{CPU: 8 * 1024, Memory: 36 * 1024},
{CPU: 8 * 1024, Memory: 40 * 1024},
{CPU: 8 * 1024, Memory: 44 * 1024},
{CPU: 8 * 1024, Memory: 48 * 1024},
{CPU: 8 * 1024, Memory: 52 * 1024},
{CPU: 8 * 1024, Memory: 56 * 1024},
{CPU: 8 * 1024, Memory: 60 * 1024},
{CPU: 16 * 1024, Memory: 32 * 1024},
{CPU: 16 * 1024, Memory: 40 * 1024},
{CPU: 16 * 1024, Memory: 48 * 1024},
{CPU: 16 * 1024, Memory: 56 * 1024},
{CPU: 16 * 1024, Memory: 64 * 1024},
{CPU: 16 * 1024, Memory: 72 * 1024},
{CPU: 16 * 1024, Memory: 80 * 1024},
{CPU: 16 * 1024, Memory: 88 * 1024},
{CPU: 16 * 1024, Memory: 96 * 1024},
{CPU: 16 * 1024, Memory: 104 * 1024},
{CPU: 16 * 1024, Memory: 112 * 1024},
{CPU: 16 * 1024, Memory: 120 * 1024},
{CPU: 16 * 1024, Memory: 128 * 1024},
{CPU: 16 * 1024, Memory: 136 * 1024},
{CPU: 16 * 1024, Memory: 144 * 1024},
{CPU: 16 * 1024, Memory: 152 * 1024},
{CPU: 16 * 1024, Memory: 160 * 1024},
}

func (a *App) IsReviewApp() bool {
Expand Down

0 comments on commit 1efc25d

Please sign in to comment.