Skip to content

Commit

Permalink
Increase pod RAM to 8gb for quick pipeline
Browse files Browse the repository at this point in the history
This could help with strange "exit code 137" failures.
  • Loading branch information
mederly committed Mar 25, 2024
1 parent f805f4e commit 9b4fee1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/jenkins/midpoint-quick-pipeline
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ podTemplate(
command: 'cat',
resourceRequestCpu: params.BUILDER_CPU ?: '4',
resourceLimitCpu: params.BUILDER_CPU ?: '4',
resourceRequestMemory: '6Gi',
resourceLimitMemory: '6Gi') // by default -Xmx4g is set in main POM
resourceRequestMemory: '8Gi',
resourceLimitMemory: '8Gi') // by default -Xmx4g is set in main POM
]
) {
node(POD_LABEL) {
Expand Down

0 comments on commit 9b4fee1

Please sign in to comment.