From 6c036bbe6f5ad049d03e2fc130463dd15305c760 Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Mon, 16 Mar 2026 15:34:47 +0300 Subject: [PATCH] fix(ci): use upstream paritytech/zombienet Docker image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Zombienet is a 3rd-party upstream tool — its Docker image should reference paritytech/zombienet, not pezkuwi/zombienet which doesn't exist on Docker Hub. This fixes all zombienet test failures caused by image pull failures. --- .github/actions/build-push-image/action.yml | 2 +- .github/zombienet-env | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/build-push-image/action.yml b/.github/actions/build-push-image/action.yml index f9392627..fe9ce011 100644 --- a/.github/actions/build-push-image/action.yml +++ b/.github/actions/build-push-image/action.yml @@ -27,7 +27,7 @@ runs: - name: build shell: bash env: - ZOMBIENET_IMAGE: "docker.io/pezkuwi/zombienet:v1.3.105" + ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.3.105" IMAGE_TAG: docker.io/pezkuwi/${{ inputs.image-name }} run: | export DOCKER_IMAGES_VERSION=${{ github.event.pull_request.head.sha || 'main' }} diff --git a/.github/zombienet-env b/.github/zombienet-env index 4f7fd2f1..c07fa670 100644 --- a/.github/zombienet-env +++ b/.github/zombienet-env @@ -1,11 +1,11 @@ # zombienet settings ZOMBIENET_PROVIDER=native -ZOMBIENET_IMAGE_FOR_NATIVE=docker.io/pezkuwi/zombienet:v1.3.133 +ZOMBIENET_IMAGE_FOR_NATIVE=docker.io/paritytech/zombienet:v1.3.133 ZOMBIENET_DEFAULT_RUNNER_FOR_NATIVE=pezkuwi-runner ZOMBIENET_LARGE_RUNNER_FOR_NATIVE=pezkuwi-runner ZOMBIENET_DEFAULT_RUNNER_FOR_NATIVE_PERSISTENT=pezkuwi-runner ZOMBIENET_LARGE_RUNNER_FOR_NATIVE_PERSISTENT=pezkuwi-runner -ZOMBIENET_IMAGE_FOR_K8S=docker.io/pezkuwi/zombienet:v1.3.133 +ZOMBIENET_IMAGE_FOR_K8S=docker.io/paritytech/zombienet:v1.3.133 ZOMBIENET_RUNNER_FOR_K8S=pezkuwi-runner DEBUG=zombie,zombie::network-node,zombie::kube::client::logs @@ -16,7 +16,7 @@ ZOMBIENET_SDK_DEFAULT_RUNNER_FOR_NATIVE=pezkuwi-runner ZOMBIENET_SDK_LARGE_RUNNER_FOR_NATIVE=pezkuwi-runner ZOMBIENET_SDK_DEFAULT_RUNNER_FOR_NATIVE_PERSISTENT=pezkuwi-runner ZOMBIENET_SDK_LARGE_RUNNER_FOR_NATIVE_PERSISTENT=pezkuwi-runner -ZOMBIENET_SDK_IMAGE_FOR_K8S=docker.io/pezkuwi/zombienet:v1.3.133 +ZOMBIENET_SDK_IMAGE_FOR_K8S=docker.io/paritytech/zombienet:v1.3.133 ZOMBIENET_SDK_RUNNER_FOR_K8S=pezkuwi-runner RUST_LOG=info,zombienet_orchestrator=trace,cumulus_zombienet_sdk_helpers=debug