From 38f4cc6393855d1c892fa205dab89c99d9f11399 Mon Sep 17 00:00:00 2001 From: Andrew Stucki Date: Wed, 22 Apr 2026 10:49:03 -0400 Subject: [PATCH] Fix controller-gen sha and architectures for new build runners (#1475) * Fix controller-gen sha and architectures for new build runners * Update nix in CI * revert nix changes since it's an issue in upstream common-go (cherry picked from commit 7f8c6db094ffab4142f8a829eb71c46234020457) --- taskfiles/k8s.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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