Reduce noop job resource requests (#46920)

`no-spec-to-rebuild` jobs use far less resources than they request. For example, [this](https://gitlab.spack.io/spack/spack/-/jobs/12944487) job [used](https://prometheus.spack.io/api/v1/query_range?query=container_memory_working_set_bytes{pod=%22runner-dcsgp53u-project-2-concurrent-3-0ubclrr1%22}&start=1728655743&end=1728656543&step=1s) around 3MB.

While this won't lead to any crazy cost savings, k8s requests effectively block other jobs from using the resources, so reducing this to a reasonable number is important.
This commit is contained in:
Caetano Melone 2024-10-15 14:49:45 -03:00 committed by GitHub
parent 0477875667
commit 1259992159
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -111,8 +111,8 @@ ci:
CI_OIDC_REQUIRED: 0
GIT_STRATEGY: "none"
CI_JOB_SIZE: "small"
KUBERNETES_CPU_REQUEST: "500m"
KUBERNETES_MEMORY_REQUEST: "500M"
KUBERNETES_CPU_REQUEST: "100m"
KUBERNETES_MEMORY_REQUEST: "5M"
before_script:: []
after_script:: []