Skip to content

Commit

Permalink
Double the memory limit as an experiment
Browse files Browse the repository at this point in the history
  • Loading branch information
mlandauer committed Apr 23, 2020
1 parent 88442a2 commit 674c037
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/jobdispatcher/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ func (client *kubernetesClient) Create(runID string, dockerImage string, command
apiv1.ResourceCPU: resource.MustParse("250m"), // 1/4 of a vCPU
},
Limits: apiv1.ResourceList{
apiv1.ResourceMemory: resource.MustParse("512Mi"), // 512 MB
apiv1.ResourceCPU: resource.MustParse("1000m"), // One vCPU
apiv1.ResourceMemory: resource.MustParse("1024Mi"), // 1024 MB
apiv1.ResourceCPU: resource.MustParse("1000m"), // One vCPU
},
},
},
Expand Down

0 comments on commit 674c037

Please sign in to comment.