Skip to content

Commit

Permalink
Reduce default memory limit of higher range budgets to 512Mi.
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamDumpleton committed May 11, 2022
1 parent 454871f commit 8e3d84c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions session-manager/handlers/namespace_budgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
"type": "Container",
"min": {"cpu": "1m", "memory": "1Mi"},
"max": {"cpu": "4", "memory": "4Gi"},
"default": {"cpu": "500m", "memory": "1Gi"},
"default": {"cpu": "500m", "memory": "512Mi"},
"defaultRequest": {"cpu": "50m", "memory": "128Mi"},
},
{
Expand Down Expand Up @@ -231,7 +231,7 @@
"type": "Container",
"min": {"cpu": "1m", "memory": "1Mi"},
"max": {"cpu": "8", "memory": "8Gi"},
"default": {"cpu": "500m", "memory": "2Gi"},
"default": {"cpu": "500m", "memory": "512Mi"},
"defaultRequest": {"cpu": "50m", "memory": "128Mi"},
},
{
Expand Down Expand Up @@ -302,7 +302,7 @@
"type": "Container",
"min": {"cpu": "1m", "memory": "1Mi"},
"max": {"cpu": "8", "memory": "12Gi"},
"default": {"cpu": "500m", "memory": "2Gi"},
"default": {"cpu": "500m", "memory": "512Mi"},
"defaultRequest": {"cpu": "50m", "memory": "128Mi"},
},
{
Expand Down Expand Up @@ -373,7 +373,7 @@
"type": "Container",
"min": {"cpu": "1m", "memory": "1Mi"},
"max": {"cpu": "8", "memory": "16Gi"},
"default": {"cpu": "500m", "memory": "2Gi"},
"default": {"cpu": "500m", "memory": "512Mi"},
"defaultRequest": {"cpu": "50m", "memory": "128Mi"},
},
{
Expand Down

0 comments on commit 8e3d84c

Please sign in to comment.