mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-08-27 19:36:19 +00:00
The grep filter `grep -v -E "alpha|beta"` was letting through RC tags like `v1.37.0-rc.1`. The awk command splits on `.` and takes `$NF` as the patch version, so `v1.37.0-rc.1` becomes `1.37.1` — a version that doesn't exist on Docker Hub, causing the kind cluster creation to fail with "manifest for kindest/node:v1.37.1 not found". Fix: add `rc` to the exclusion filter. Co-authored-by: Lyndon-Li <98304688+Lyndon-Li@users.noreply.github.com>