This is an automated email from the ASF dual-hosted git repository. shahar1 pushed a commit to branch gha-arc-rebase in repository https://gitbox.apache.org/repos/asf/airflow-ci-infra.git
commit 75327b9c501eb5ecd7656c6404d350fb2836d821 Author: Hussein Awala <[email protected]> AuthorDate: Sun Jul 23 18:21:07 2023 +0200 add large runners and increase max replicas --- helm/runners-config/values.yaml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/helm/runners-config/values.yaml b/helm/runners-config/values.yaml index 2a500b3..876cb1c 100644 --- a/helm/runners-config/values.yaml +++ b/helm/runners-config/values.yaml @@ -22,7 +22,7 @@ scaleDownDelaySecondsAfterScaleOut: 30 runners: - name: small minReplicas: 0 - maxReplicas: 5 + maxReplicas: 30 labels: - small nodeSelector: @@ -35,12 +35,25 @@ runners: effect: NoSchedule - name: medium minReplicas: 0 - maxReplicas: 5 + maxReplicas: 30 labels: - medium nodeSelector: node-type: gha-runners size: medium + tolerations: + - key: node-type + operator: Equal + value: gha-runners + effect: NoSchedule + - name: large + minReplicas: 0 + maxReplicas: 30 + labels: + - large + nodeSelector: + node-type: gha-runners + size: large tolerations: - key: node-type operator: Equal
