Skip to content

Commit

Permalink
fix: helm lint
Browse files Browse the repository at this point in the history
  • Loading branch information
umagnus committed Dec 29, 2022
1 parent d239db6 commit 7e4e4d0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions hack/verify-helm-chart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@ function validate_image() {
fi
}

echo "Running helm lint"

if [[ -z "$(command -v helm)" ]]; then
echo "Cannot find helm. Installing helm..."
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
fi

helm lint ${PKG_ROOT}/charts/latest/blob-csi-driver

echo "Comparing image version between helm chart and manifests in deploy folder"

if [[ -z "$(command -v pip)" ]]; then
Expand Down

0 comments on commit 7e4e4d0

Please sign in to comment.