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 aaeed54 commit b24a1ccCopy full SHA for b24a1cc
ct.sh
@@ -42,8 +42,13 @@ main() {
42
return
43
fi
44
45
- configure_kube
46
- install_tiller
+ if [[ "$command" == "lint" ]]; then
+ helm_init
47
+ else
48
+ configure_kube
49
+ install_tiller
50
+ fi
51
+
52
run_ct
53
}
54
@@ -132,6 +137,11 @@ install_tiller() {
132
137
echo
133
138
134
139
140
+helm_init() {
141
+ docker_exec helm init --client-only
142
+ echo
143
+}
144
135
145
run_ct() {
136
146
echo "Running 'ct $command'..."
147
docker_exec ct "$command"
0 commit comments