diff options
author | Zack Galbreath <zack.galbreath@kitware.com> | 2022-06-01 11:43:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-01 09:43:23 -0600 |
commit | 47ac7107969fd13269445237935534307067cadb (patch) | |
tree | 4fdaa57b44fd9495f15b0ef6471de33c58193f5f /share | |
parent | d7fb5a6db47c8f4b84b8faa59aabf331dfcefabe (diff) | |
download | spack-47ac7107969fd13269445237935534307067cadb.tar.gz spack-47ac7107969fd13269445237935534307067cadb.tar.bz2 spack-47ac7107969fd13269445237935534307067cadb.tar.xz spack-47ac7107969fd13269445237935534307067cadb.zip |
CPU & memory requests for jobs that generate GitLab CI pipelines (#30940)
gitlab ci: make sure pipeline generation isn't resource starved
Diffstat (limited to 'share')
-rw-r--r-- | share/spack/gitlab/cloud_pipelines/.gitlab-ci.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/share/spack/gitlab/cloud_pipelines/.gitlab-ci.yml b/share/spack/gitlab/cloud_pipelines/.gitlab-ci.yml index 45efff7c99..e1867ac943 100644 --- a/share/spack/gitlab/cloud_pipelines/.gitlab-ci.yml +++ b/share/spack/gitlab/cloud_pipelines/.gitlab-ci.yml @@ -45,6 +45,9 @@ default: paths: - "${CI_PROJECT_DIR}/jobs_scratch_dir" tags: ["spack", "aws", "public", "medium", "x86_64"] + variables: + KUBERNETES_CPU_REQUEST: 4000m + KUBERNETES_MEMORY_REQUEST: 8G interruptible: true retry: max: 2 |