Skip to content

Commit 0decfc8

Browse files
committed
fix: prevent overload in infra cluster
related to jenkins-x/jx#8670
1 parent eebc3b2 commit 0decfc8

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

packs/go-plugin/.lighthouse/jenkins-x/pullrequest.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
resources:
2626
# override requests for the pod here
2727
requests:
28-
cpu: 400m
28+
cpu: 1400m
2929
memory: 600Mi
3030
- name: build-make-linux
3131
resources: {}

tasks/go-plugin/pullrequest.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ spec:
2828
resources:
2929
# set requests for the pod here
3030
requests:
31-
cpu: 400m
31+
cpu: 1400m
3232
memory: 600Mi
3333
script: |
3434
#!/usr/bin/env sh

tasks/go-plugin/release.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,11 @@ spec:
4141
jx-release-version --tag > VERSION
4242
- image: ghcr.io/jenkins-x/jx-boot:3.11.42
4343
name: jx-variables
44-
resources: {}
44+
resources:
45+
# set requests for the pod here
46+
requests:
47+
cpu: 1400m
48+
memory: 600Mi
4549
script: |
4650
#!/usr/bin/env sh
4751
jx gitops variables

0 commit comments

Comments
 (0)