Skip to content

Commit 614e6c5

Browse files
authored
build: Fix Konflux builds (#2166)
1 parent 0b50b8f commit 614e6c5

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.tekton/collector-build.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ spec:
7979
stepSpecs:
8080
- name: create-trusted-artifact
8181
computeResources: *ta-resources
82+
- pipelineTaskName: determine-image-expiration
83+
stepSpecs:
84+
- name: use-trusted-artifact
85+
computeResources: *ta-resources
8286
- pipelineTaskName: determine-image-tag
8387
stepSpecs:
8488
- name: use-trusted-artifact
@@ -93,10 +97,10 @@ spec:
9397
# We saw prefetch-dependencies _step_ also OOMKill-ed, therefore bumping its memory compared to default.
9498
computeResources:
9599
limits:
96-
memory: 4Gi
100+
memory: 6Gi
97101
requests:
98102
cpu: "1"
99-
memory: 4Gi
103+
memory: 6Gi
100104
- pipelineTaskName: build-container-s390x
101105
stepSpecs:
102106
- name: use-trusted-artifact

collector/container/konflux.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG CMAKE_BUILD_DIR=${BUILD_DIR}/cmake-build
44

55
FROM registry.access.redhat.com/ubi8/ubi:latest@sha256:0c1757c4526cfd7fdfedc54fadf4940e7f453201de65c0fefd454f3dde117273 AS builder
66

7-
RUN dnf -y install --nobest \
7+
RUN dnf -y install --nobest --allowerasing \
88
make \
99
wget \
1010
unzip \

0 commit comments

Comments
 (0)