From dde8a5536b7d2f726960873923a93219c70526e0 Mon Sep 17 00:00:00 2001 From: Polina Bungina Date: Wed, 28 Jan 2026 11:33:29 +0100 Subject: [PATCH] debug --- e2e/run.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e2e/run.sh b/e2e/run.sh index 7e84fb2d7..2cd2b450b 100755 --- a/e2e/run.sh +++ b/e2e/run.sh @@ -20,8 +20,9 @@ echo "Kubeconfig path: ${kubeconfig_path}" function pull_images(){ operator_tag=$(git describe --tags --always --dirty) target_image=docker.io/library/postgres-operator:${operator_tag} - if [[ -z $(docker images -q "${target_image}") ]] + if [[ -z $(docker images -q "postgres-operator:${operator_tag}") ]] then + echo "Local image not found. Pulling operator image from ghcr.io and tagging it as ${target_image}" docker pull ghcr.io/zalando/postgres-operator:latest docker tag ghcr.io/zalando/postgres-operator:latest "${target_image}" fi