We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 164ca05 + 0245e00 commit a18fca5Copy full SHA for a18fca5
hack/verify-helm-chart.sh
@@ -35,6 +35,15 @@ function validate_image() {
35
fi
36
}
37
38
+echo "Running helm lint"
39
+
40
+if [[ -z "$(command -v helm)" ]]; then
41
+ echo "Cannot find helm. Installing helm..."
42
+ curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
43
+fi
44
45
+helm lint ${PKG_ROOT}/charts/latest/csi-driver-smb
46
47
echo "Comparing image version between helm chart and manifests in deploy folder"
48
49
if [[ -z "$(command -v pip)" ]]; then
0 commit comments