Skip to content

Commit

Permalink
Reduce memory of grand central api container
Browse files Browse the repository at this point in the history
  • Loading branch information
tomach committed Jan 11, 2024
1 parent 75b4f90 commit 965f9d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crate/operator/grand_central.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ def get_grand_central_deployment(
resources=V1ResourceRequirements(
limits={
"cpu": 2,
"memory": "512Mi",
"memory": "150Mi",
},
requests={"cpu": "500m", "memory": "512Mi"},
requests={"cpu": "500m", "memory": "150Mi"},
),
liveness_probe=V1Probe(
http_get=V1HTTPGetAction(
Expand Down

0 comments on commit 965f9d4

Please sign in to comment.