diff options
| author | Taras Madan <tarasmadan@google.com> | 2024-02-28 15:07:02 +0100 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2024-03-05 10:08:44 +0000 |
| commit | 9360411496f9922b0924dcb2c3e9c5705e4b268a (patch) | |
| tree | c79bb1f937f0b6715c969aea455bc2e98cb8d6fe | |
| parent | e364d9faf58763ca89f7c401f2de3a0eedf65f12 (diff) | |
.github/workflows/ci.yml: require min 31 core per test job
We use machines with 32 CPU and 32 RAM.
Adding this options we prevent 2 runner PODs scheduling to the same node.
| -rw-r--r-- | .github/arc_config/values.yaml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/arc_config/values.yaml b/.github/arc_config/values.yaml index f7f8a4e23..023e62b86 100644 --- a/.github/arc_config/values.yaml +++ b/.github/arc_config/values.yaml @@ -195,6 +195,9 @@ template: - name: runner image: ghcr.io/actions/actions-runner:latest command: ["/home/runner/run.sh"] + resources: + requests: + cpu: 31 ## Optional controller service account that needs to have required Role and RoleBinding ## to operate this gha-runner-scale-set installation. |
