Skip to content

Commit 0b023df

Browse files
committed
Pin an earlier helm3 version
Due to CRDs moving to a v1 namespace, helm lint now fails Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent fc4b455 commit 0b023df

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

contrib/get_tools.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
set -e
44

55
KIND_VERSION="v0.9.0"
6-
HELM_VERSION="v3.4.0"
6+
# Causes a validation failure when linting due to CRDs moving to v1
7+
# HELM_VERSION="v3.4.0"
8+
HELM_VERSION="v3.0.3"
79
KUBE_VERSION="v1.18.8"
810
ARKADE_VERSION="0.6.21"
911

contrib/lint_chart.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
for chart in `ls ./chart`; do
44
helm lint ./chart/${chart}
55
if [ $? != 0 ]; then
6-
travis_terminate 1
6+
exit 1
77
fi
88
done
99

0 commit comments

Comments
 (0)