From 071ab807f0fb492c819809970bed5d63cd90198a Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Mon, 12 Feb 2024 22:59:50 +0100 Subject: [PATCH] Downgrade Kind to 0.20.0 Kind 0.21 breaks running AMD images on ARM (MacOS M1/M2/M3) See https://github.com/kubernetes-sigs/kind/issues/3510 We should only upgrade if it is fixed --- dev/breeze/src/airflow_breeze/global_constants.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev/breeze/src/airflow_breeze/global_constants.py b/dev/breeze/src/airflow_breeze/global_constants.py index 324176c44609d..9b13e6ef49f27 100644 --- a/dev/breeze/src/airflow_breeze/global_constants.py +++ b/dev/breeze/src/airflow_breeze/global_constants.py @@ -394,7 +394,10 @@ def get_airflow_extras(): DEFAULT_KUBERNETES_VERSION = CURRENT_KUBERNETES_VERSIONS[0] DEFAULT_EXECUTOR = CURRENT_EXECUTORS[0] -KIND_VERSION = "v0.21.0" +# Kind 0.21 breaks running AMD images on ARM (MacOS M1/M2/M3) +# see https://github.com/kubernetes-sigs/kind/issues/3510 +# We should only upgrade if it is fixed +KIND_VERSION = "v0.20.0" HELM_VERSION = "v3.14.0" # Initialize image build variables - Have to check if this has to go to ci dataclass