From d51e209230349c71eabc40c7b9f6c6d9dcda01fe Mon Sep 17 00:00:00 2001 From: Polina Bungina Date: Fri, 13 Feb 2026 12:05:00 +0100 Subject: [PATCH] Pull both plarforms' image in e2e --- e2e/run.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/e2e/run.sh b/e2e/run.sh index 2d0176308..22b7cfe9e 100755 --- a/e2e/run.sh +++ b/e2e/run.sh @@ -42,7 +42,10 @@ function start_kind(){ export KUBECONFIG="${kubeconfig_path}" kind create cluster --name ${cluster_name} --config kind-cluster-postgres-operator-e2e-tests.yaml - docker pull "${spilo_image}" + + # Pull all platforms to satisfy Kind's --all-platforms requirement + docker pull --platform linux/amd64 "${spilo_image}" + docker pull --platform linux/arm64 "${spilo_image}" kind load docker-image "${spilo_image}" --name ${cluster_name} }