Skip to content

Commit

Permalink
Ignore deployment verification on Helm
Browse files Browse the repository at this point in the history
The Helm charts can't deploy the newly-built images.

Signed-off-by: Stephen Kitt <[email protected]>
  • Loading branch information
skitt authored and dfarrell07 committed Feb 5, 2025
1 parent 21fb60f commit ad96f5b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/shared/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ subctl show versions
print_clusters_message

# If there are any local components, check that the deployed versions are the newly-built versions
if [ -n "$LOCAL_COMPONENTS" ]; then
# This is known to fail with Helm so ignore that
if [[ -n "$LOCAL_COMPONENTS" && "$DEPLOYTOOL" != helm ]]; then
for component in $LOCAL_COMPONENTS; do
for version in $(subctl show versions | awk "/$component/ { print \$4 }"); do
# shellcheck disable=SC2153 # VERSION is provided externally
Expand Down

0 comments on commit ad96f5b

Please sign in to comment.