Skip to content

Commit 9644a1b

Browse files
authored
Merge pull request #2147 from k8s-infra-cherrypick-robot/cherry-pick-2144-to-release-1.24
[release-1.24] test: ignore latest tgz file in helm chart index verification
2 parents 55dba72 + fc125a0 commit 9644a1b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

hack/verify-helm-chart-index.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ function check_url() {
3333
echo "$local exists"
3434
else
3535
echo "$local does not exist"
36+
# ignore url which contains latest
37+
if [[ "$url" == *"latest"* ]]; then
38+
echo "ignore $url"
39+
return
40+
fi
3641
exit 1
3742
fi
3843
fi

0 commit comments

Comments
 (0)