Skip to content

Commit

Permalink
fixed ci pod request (#3980) (#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-579 committed Sep 28, 2023
1 parent 7699c30 commit d493dfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/pipeline/WorkflowUtils.go
Original file line number Diff line number Diff line change
Expand Up @@ -684,8 +684,8 @@ func (workflowRequest *WorkflowRequest) GetLimitReqCpuMem(config *CiCdConfig) v1
v12.ResourceMemory: resource.MustParse(limitReqCpuMem.LimitMem),
},
Requests: v12.ResourceList{
v12.ResourceCPU: resource.MustParse(limitReqCpuMem.LimitCpu),
v12.ResourceMemory: resource.MustParse(limitReqCpuMem.LimitMem),
v12.ResourceCPU: resource.MustParse(limitReqCpuMem.ReqCpu),
v12.ResourceMemory: resource.MustParse(limitReqCpuMem.ReqMem),
},
}
}
Expand Down

0 comments on commit d493dfc

Please sign in to comment.