From 21b7e73659700b7afaf1ffda08fb6b19b93cab2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20MERLE?= <95630726+smerle33@users.noreply.github.com> Date: Tue, 1 Aug 2023 15:13:19 +0200 Subject: [PATCH] feat(publick8s): migrate reports to arm64 nodepool (#4209) * feat(publick8s): migrate reports to arm64 nodepool * Apply suggestions from code review Co-authored-by: Damien Duportal --------- Co-authored-by: smerle33 Co-authored-by: Damien Duportal --- config/reports.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/config/reports.yaml b/config/reports.yaml index ba862da97..b37152f9e 100644 --- a/config/reports.yaml +++ b/config/reports.yaml @@ -28,5 +28,13 @@ htmlVolume: replicaCount: 2 +# Specify the "hard" scheduling constraints nodeSelector: - agentpool: x86medium + # arm64 is cheaper than x86 + kubernetes.io/arch: arm64 + +tolerations: + - key: "kubernetes.io/arch" + operator: "Equal" + value: "arm64" + effect: "NoSchedule"