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 acad4ae commit d4ca792Copy full SHA for d4ca792
Makefile
@@ -179,6 +179,16 @@ mdlint:
179
ruby:slim \
180
/workdir/scripts/test-infra/mdlint.sh
181
182
+.PHONY: helm-schema
183
+helm-schema:
184
+ @if ! helm schema -h >/dev/null 2>&1; then \
185
+ echo "ERROR: helm schema command not found! Please install the plugin with:"; \
186
+ echo " helm plugin install https://github.com/losisin/helm-values-schema-json.git"; \
187
+ exit 1; \
188
+ fi
189
+ cd deployment/helm/node-feature-discovery/ && \
190
+ helm schema
191
+
192
helm-lint:
193
helm lint --strict deployment/helm/node-feature-discovery/
194
0 commit comments