Skip to content

Commit

Permalink
Temporarily increase MPC memory on rh01 (#5234)
Browse files Browse the repository at this point in the history
We have an issues where too many TaskRuns are causing the pod to use too
much memory and be OOMKilled.

Signed-off-by: Hugo Ares <hares@redhat.com>
  • Loading branch information
hugares authored Jan 7, 2025
1 parent e65b718 commit 4e37184
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ resources:
- https://github.com/konflux-ci/multi-platform-controller/deploy/operator?ref=644f445cdc34b9d52a00f0e3e6d3f08820f22e07
- https://github.com/konflux-ci/multi-platform-controller/deploy/otp?ref=644f445cdc34b9d52a00f0e3e6d3f08820f22e07

components:
- ../../k-components/manager-resources

images:
- name: multi-platform-controller
newName: quay.io/konflux-ci/multi-platform-controller
newTag: 644f445cdc34b9d52a00f0e3e6d3f08820f22e07
- name: multi-platform-otp-server
newName: quay.io/konflux-ci/multi-platform-controller-otp-service
newTag: 644f445cdc34b9d52a00f0e3e6d3f08820f22e07

patches:
- path: manager_resources_patch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: multi-platform-controller
namespace: multi-platform-controller
spec:
template:
spec:
containers:
- name: manager
resources:
limits:
cpu: 500m
memory: 16Gi
requests:
cpu: 500m
memory: 16Gi

0 comments on commit 4e37184

Please sign in to comment.