fix: increase install-api-deps memory to 1Gi for CI

LimitRange defaults to 192Mi which is too low for pip installing
~30 packages. Set 512Mi request / 1Gi limit.
This commit is contained in:
Viktor Barzin 2026-03-15 23:47:30 +00:00
parent 546f6957e3
commit f5a92dc0c9
No known key found for this signature in database
GPG key ID: 0EB088298288D958

View file

@ -12,6 +12,13 @@ clone:
steps: steps:
- name: install-api-deps - name: install-api-deps
image: python:3.13-slim image: python:3.13-slim
backend_options:
kubernetes:
resources:
requests:
memory: 512Mi
limits:
memory: 1Gi
commands: commands:
- apt-get update && apt-get install -y --no-install-recommends libglib2.0-0 - apt-get update && apt-get install -y --no-install-recommends libglib2.0-0
- python -m venv .venv - python -m venv .venv