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.
1 parent fc4b455 commit 0b023dfCopy full SHA for 0b023df
contrib/get_tools.sh
@@ -3,7 +3,9 @@
3
set -e
4
5
KIND_VERSION="v0.9.0"
6
-HELM_VERSION="v3.4.0"
+# Causes a validation failure when linting due to CRDs moving to v1
7
+# HELM_VERSION="v3.4.0"
8
+HELM_VERSION="v3.0.3"
9
KUBE_VERSION="v1.18.8"
10
ARKADE_VERSION="0.6.21"
11
contrib/lint_chart.sh
@@ -3,7 +3,7 @@
for chart in `ls ./chart`; do
helm lint ./chart/${chart}
if [ $? != 0 ]; then
- travis_terminate 1
+ exit 1
fi
done
0 commit comments