Skip to content

Commit 64a00f9

Browse files
vcarluerjreynard-code
authored andcommitted
New default sizing in accordance with AKS node pool allocatable resources. High memory pool is sized to host 2 simulations, the other only 1
1 parent 725a48d commit 64a00f9

File tree

1 file changed

+6
-6
lines changed
  • scenariorun/src/main/kotlin/com/cosmotech/scenariorun/container

1 file changed

+6
-6
lines changed

scenariorun/src/main/kotlin/com/cosmotech/scenariorun/container/StartInfo.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ fun Sizing.toContainerResourceSizing(): ContainerResourceSizing {
3434

3535
internal val BASIC_SIZING =
3636
Sizing(
37-
requests = SizingInfo(cpu = "1", memory = "64Mi"),
38-
limits = SizingInfo(cpu = "4", memory = "6144Mi"))
37+
requests = SizingInfo(cpu = "3", memory = "4Gi"),
38+
limits = SizingInfo(cpu = "3", memory = "4Gi"))
3939

4040
internal val HIGH_MEMORY_SIZING =
4141
Sizing(
42-
requests = SizingInfo(cpu = "1", memory = "64000Mi"),
43-
limits = SizingInfo(cpu = "16", memory = "128000Mi"))
42+
requests = SizingInfo(cpu = "7", memory = "57Gi"),
43+
limits = SizingInfo(cpu = "7", memory = "57Gi"))
4444

4545
internal val HIGH_CPU_SIZING =
4646
Sizing(
47-
requests = SizingInfo(cpu = "24", memory = "4096Mi"),
48-
limits = SizingInfo(cpu = "72", memory = "144000Mi"))
47+
requests = SizingInfo(cpu = "70", memory = "130Gi"),
48+
limits = SizingInfo(cpu = "70", memory = "130Gi"))
4949

5050
fun ScenarioResourceSizing.toSizing(): Sizing {
5151
return Sizing(

0 commit comments

Comments
 (0)