Skip to content

Commit

Permalink
Merge pull request #1674 from umagnus/fix-helm-lint
Browse files Browse the repository at this point in the history
test: add helm lint test
  • Loading branch information
k8s-ci-robot committed Dec 29, 2022
2 parents 9055345 + 73f441c commit de68e1b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions hack/verify-helm-chart.sh
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/azuredisk-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 de68e1b

Please sign in to comment.