Skip to content

Commit

Permalink
Temporarily ignore kindes/node:v1.32.1 to unblock CI (#5814)
Browse files Browse the repository at this point in the history
See kubernetes-sigs/kind#3853 for issues

fixes #5812

Signed-off-by: Sorin Dumitru <[email protected]>
  • Loading branch information
sorindumitru authored Jan 24, 2025
1 parent c71fc91 commit aa532ce
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/scripts/find_k8s.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@

declare -A tags_map
for element in "${tags_sorted[@]}"; do
# Skip 1.32.1 until either a new version of kind is released the problem
# with the kindest/node:1.32.1 image is fixed. See upstream kind issue:
# https://github.com/kubernetes-sigs/kind/issues/3853
if [[ "$element" == "v1.32.1" ]]; then
continue
fi

# Element is in this form: "X.XX.YY"
# If not, continue
num_dots=$(echo "$element" | grep -o '\.' | wc -l)
Expand Down

0 comments on commit aa532ce

Please sign in to comment.