Files
velero/.github
3127731bcc Fix e2e-test-kind: exclude RC tags from kindest/node version filter
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>
2026-08-24 03:44:59 +00:00
..