Skip to content

Commit e2023f7

Browse files
[CI] Misc Buildbot Container Fixes
The buildbot container was missing a couple dependencies that were needed to get the worker actually started. The buildbot deployment also had the RAM specified in Mi, but 1024Mi gets turned into 1Gi by k8s which then confuses terraform as it thinks the state is inconsistent.
1 parent b5a3d7d commit e2023f7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

premerge/buildbot/Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
FROM ubuntu:24.04
2-
RUN apt-get update && apt-get install -y python3 python3-pip
2+
RUN apt-get update && apt-get install -y \
3+
python3 \
4+
python3-pip \
5+
git \
6+
python-is-python3
37
COPY requirements.lock.txt /requirements.lock.txt
48
RUN pip3 install --break-system-packages -r /requirements.lock.txt && rm /requirements.lock.txt
59
RUN mkdir /app

premerge/buildbot_deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ spec:
3030
memory: "512Mi"
3131
cpu: "500m"
3232
limits:
33-
memory: "1024Mi"
33+
memory: "1Gi"
3434
cpu: "750m"

0 commit comments

Comments
 (0)