diff --git a/taskfiles/k8s.yml b/taskfiles/k8s.yml index 45e64b55b..d4665028a 100644 --- a/taskfiles/k8s.yml +++ b/taskfiles/k8s.yml @@ -173,9 +173,10 @@ tasks: REPO: '{{.REPO | default "docker.redpanda.com/redpandadata/redpanda"}}' cmds: - | + ARCH=$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/') TAG=$(docker-tag-list -c "{{.CONSTRAINT}}" --latest -r "{{.REPO}}" | sed 's/-a..64$//') - docker pull "{{.REPO}}":"${TAG}" - docker tag "{{.REPO}}":"${TAG}" localhost/redpanda:dev + docker pull "{{.REPO}}":"${TAG}-${ARCH}" + docker tag "{{.REPO}}":"${TAG}-${ARCH}" localhost/redpanda:dev run-kuttl-tests: desc: run kuttl tests