From afa8bba099269ef2f04bd289641b4dd09fa13b56 Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Sat, 14 Mar 2026 15:58:50 +0300 Subject: [PATCH] fix(ci): change Docker Hub namespace from pezkuwichain/ to pezkuwi/ Docker Hub personal account namespace must match the username. Updated all docker.io image references across workflows, actions, docker-compose files, and zombienet configs. --- .github/actions/build-push-image/action.yml | 4 ++-- .github/workflows/build-publish-eth-rpc.yml | 2 +- .github/workflows/cmd.yml | 2 +- .github/zombienet-env | 6 +++--- .../.maintain/local-docker-test-network/docker-compose.yml | 6 +++--- .../network-specs/asset-hub-high-pool-limit-fatp.toml | 4 ++-- .../network-specs/asset-hub-low-pool-limit-fatp.toml | 4 ++-- .../network-specs/pezkuwichain-local-gossiping.toml | 2 +- .../pezkuwichain-local-high-pool-limit-fatp.toml | 2 +- .../pezkuwichain-local-low-pool-limit-fatp.toml | 2 +- docker/dockerfiles/pezkuwi/docker-compose-local.yml | 4 ++-- docker/dockerfiles/pezkuwi/docker-compose.yml | 2 +- pezcumulus/zombienet/examples/small_network.toml | 4 ++-- 13 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/actions/build-push-image/action.yml b/.github/actions/build-push-image/action.yml index b12cb238..f9392627 100644 --- a/.github/actions/build-push-image/action.yml +++ b/.github/actions/build-push-image/action.yml @@ -27,8 +27,8 @@ runs: - name: build shell: bash env: - ZOMBIENET_IMAGE: "docker.io/pezkuwichain/zombienet:v1.3.105" - IMAGE_TAG: docker.io/pezkuwichain/${{ inputs.image-name }} + ZOMBIENET_IMAGE: "docker.io/pezkuwi/zombienet:v1.3.105" + IMAGE_TAG: docker.io/pezkuwi/${{ inputs.image-name }} run: | export DOCKER_IMAGES_VERSION=${{ github.event.pull_request.head.sha || 'main' }} if [[ ${{ github.event_name }} == "merge_group" ]]; then export DOCKER_IMAGES_VERSION="${GITHUB_SHA::8}"; fi diff --git a/.github/workflows/build-publish-eth-rpc.yml b/.github/workflows/build-publish-eth-rpc.yml index 01038a40..9c475a9e 100644 --- a/.github/workflows/build-publish-eth-rpc.yml +++ b/.github/workflows/build-publish-eth-rpc.yml @@ -12,7 +12,7 @@ concurrency: cancel-in-progress: true env: - ETH_RPC_IMAGE_NAME: "docker.io/pezkuwichain/eth-rpc" + ETH_RPC_IMAGE_NAME: "docker.io/pezkuwi/eth-rpc" jobs: isdraft: diff --git a/.github/workflows/cmd.yml b/.github/workflows/cmd.yml index 04a95e08..7e883318 100644 --- a/.github/workflows/cmd.yml +++ b/.github/workflows/cmd.yml @@ -240,7 +240,7 @@ jobs: - id: set-image run: | BODY=$(echo "$CMD" | xargs) # remove whitespace - IMAGE_OVERRIDE=$(echo $BODY | grep -oe 'docker.io/pezkuwichain/ci-unified:.*\s' | xargs) + IMAGE_OVERRIDE=$(echo $BODY | grep -oe 'docker.io/pezkuwi/ci-unified:.*\s' | xargs) cat .github/env >> $GITHUB_OUTPUT diff --git a/.github/zombienet-env b/.github/zombienet-env index ef36edb9..4f7fd2f1 100644 --- a/.github/zombienet-env +++ b/.github/zombienet-env @@ -1,11 +1,11 @@ # zombienet settings ZOMBIENET_PROVIDER=native -ZOMBIENET_IMAGE_FOR_NATIVE=docker.io/pezkuwichain/zombienet:v1.3.133 +ZOMBIENET_IMAGE_FOR_NATIVE=docker.io/pezkuwi/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/pezkuwichain/zombienet:v1.3.133 +ZOMBIENET_IMAGE_FOR_K8S=docker.io/pezkuwi/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/pezkuwichain/zombienet:v1.3.133 +ZOMBIENET_SDK_IMAGE_FOR_K8S=docker.io/pezkuwi/zombienet:v1.3.133 ZOMBIENET_SDK_RUNNER_FOR_K8S=pezkuwi-runner RUST_LOG=info,zombienet_orchestrator=trace,cumulus_zombienet_sdk_helpers=debug diff --git a/bizinikiwi/.maintain/local-docker-test-network/docker-compose.yml b/bizinikiwi/.maintain/local-docker-test-network/docker-compose.yml index b8225af2..32c93a95 100644 --- a/bizinikiwi/.maintain/local-docker-test-network/docker-compose.yml +++ b/bizinikiwi/.maintain/local-docker-test-network/docker-compose.yml @@ -34,7 +34,7 @@ services: - "9615:9615" volumes: - ../../target/release/bizinikiwi:/usr/local/bin/bizinikiwi - image: pezkuwichain/bizinikiwi + image: pezkuwi/bizinikiwi networks: - internet command: @@ -60,7 +60,7 @@ services: - "--prometheus-external" validator-b: - image: pezkuwichain/bizinikiwi + image: pezkuwi/bizinikiwi ports: - "9945:9944" volumes: @@ -90,7 +90,7 @@ services: - "--prometheus-external" light-c: - image: pezkuwichain/bizinikiwi + image: pezkuwi/bizinikiwi ports: - "9946:9944" volumes: diff --git a/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/asset-hub-high-pool-limit-fatp.toml b/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/asset-hub-high-pool-limit-fatp.toml index 92210fed..f5b11a72 100644 --- a/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/asset-hub-high-pool-limit-fatp.toml +++ b/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/asset-hub-high-pool-limit-fatp.toml @@ -2,7 +2,7 @@ timeout = 1500 [relaychain] -default_image = "pezkuwichain/pezkuwi:latest" +default_image = "pezkuwi/pezkuwi:latest" default_command = "pezkuwi" chain = "pezkuwichain-local" @@ -20,7 +20,7 @@ validator = true id = 2000 chain = "asset-hub-pezkuwichain-local" default_command = "pezkuwi-teyrchain" -default_image = "pezkuwichain/pezkuwi-teyrchain:latest" +default_image = "pezkuwi/pezkuwi-teyrchain:latest" cumulus_based = true default_args = [ "--force-authoring", diff --git a/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/asset-hub-low-pool-limit-fatp.toml b/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/asset-hub-low-pool-limit-fatp.toml index d10c74aa..dfecf6fa 100644 --- a/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/asset-hub-low-pool-limit-fatp.toml +++ b/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/asset-hub-low-pool-limit-fatp.toml @@ -2,7 +2,7 @@ timeout = 1500 [relaychain] -default_image = "pezkuwichain/pezkuwi:latest" +default_image = "pezkuwi/pezkuwi:latest" default_command = "pezkuwi" chain = "pezkuwichain-local" @@ -19,7 +19,7 @@ validator = true id = 2000 cumulus_based = true chain = "asset-hub-pezkuwichain-local" -default_image = "pezkuwichain/pezkuwi-teyrchain:latest" +default_image = "pezkuwi/pezkuwi-teyrchain:latest" default_command = "pezkuwi-teyrchain" default_args = [ "--force-authoring", diff --git a/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/pezkuwichain-local-gossiping.toml b/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/pezkuwichain-local-gossiping.toml index e14ccd36..3ed40848 100644 --- a/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/pezkuwichain-local-gossiping.toml +++ b/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/pezkuwichain-local-gossiping.toml @@ -2,7 +2,7 @@ timeout = 1500 [relaychain] -default_image = "pezkuwichain/pezkuwi:latest" +default_image = "pezkuwi/pezkuwi:latest" default_command = "pezkuwi" chain = "pezkuwichain-local" default_args = [ diff --git a/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/pezkuwichain-local-high-pool-limit-fatp.toml b/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/pezkuwichain-local-high-pool-limit-fatp.toml index 435080ff..9f96d106 100644 --- a/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/pezkuwichain-local-high-pool-limit-fatp.toml +++ b/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/pezkuwichain-local-high-pool-limit-fatp.toml @@ -2,7 +2,7 @@ timeout = 1500 [relaychain] -default_image = "pezkuwichain/pezkuwi:latest" +default_image = "pezkuwi/pezkuwi:latest" default_command = "pezkuwi" chain = "pezkuwichain-local" default_args = [ diff --git a/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/pezkuwichain-local-low-pool-limit-fatp.toml b/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/pezkuwichain-local-low-pool-limit-fatp.toml index 09eda4b5..b5d1b134 100644 --- a/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/pezkuwichain-local-low-pool-limit-fatp.toml +++ b/bizinikiwi/client/transaction-pool/tests/zombienet/network-specs/pezkuwichain-local-low-pool-limit-fatp.toml @@ -2,7 +2,7 @@ timeout = 1500 [relaychain] -default_image = "pezkuwichain/pezkuwi:latest" +default_image = "pezkuwi/pezkuwi:latest" default_command = "pezkuwi" chain = "pezkuwichain-local" default_args = [ diff --git a/docker/dockerfiles/pezkuwi/docker-compose-local.yml b/docker/dockerfiles/pezkuwi/docker-compose-local.yml index 049d0c69..93e09cc0 100644 --- a/docker/dockerfiles/pezkuwi/docker-compose-local.yml +++ b/docker/dockerfiles/pezkuwi/docker-compose-local.yml @@ -6,7 +6,7 @@ services: - "9933:9933" - "9944:9944" - "9615:9615" - image: pezkuwichain/pezkuwi:latest + image: pezkuwi/pezkuwi:latest volumes: - "pezkuwi-data-alice:/data" command: | @@ -24,7 +24,7 @@ services: - "9935:9933" - "9945:9944" - "29615:9615" - image: pezkuwichain/pezkuwi:latest + image: pezkuwi/pezkuwi:latest volumes: - "pezkuwi-data-bob:/data" links: diff --git a/docker/dockerfiles/pezkuwi/docker-compose.yml b/docker/dockerfiles/pezkuwi/docker-compose.yml index b3001238..667b32ec 100644 --- a/docker/dockerfiles/pezkuwi/docker-compose.yml +++ b/docker/dockerfiles/pezkuwi/docker-compose.yml @@ -1,7 +1,7 @@ version: '3' services: pezkuwi: - image: pezkuwichain/pezkuwi:latest + image: pezkuwi/pezkuwi:latest ports: - "127.0.0.1:30333:30333/tcp" diff --git a/pezcumulus/zombienet/examples/small_network.toml b/pezcumulus/zombienet/examples/small_network.toml index 9cc0df22..2c41cf0a 100644 --- a/pezcumulus/zombienet/examples/small_network.toml +++ b/pezcumulus/zombienet/examples/small_network.toml @@ -1,5 +1,5 @@ [relaychain] -default_image = "pezkuwichain/pezkuwi:latest" +default_image = "pezkuwi/pezkuwi:latest" default_command = "pezkuwi" chain = "pezkuwichain-local" @@ -20,6 +20,6 @@ chain = "asset-hub-pezkuwichain-local" [[teyrchains.collators]] name = "charlie" validator = true -image = "pezkuwichain/pezkuwi-teyrchain:latest" +image = "pezkuwi/pezkuwi-teyrchain:latest" command = "pezkuwi-teyrchain" args = ["--force-authoring"]