Pull both plarforms' image in e2e

This commit is contained in:
Polina Bungina 2026-02-13 12:05:00 +01:00
parent c6adc32d20
commit d51e209230
1 changed files with 4 additions and 1 deletions

View File

@ -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}
}