File tree Expand file tree Collapse file tree 5 files changed +1403
-91
lines changed
deployment/helm/node-feature-discovery Expand file tree Collapse file tree 5 files changed +1403
-91
lines changed Original file line number Diff line number Diff line change @@ -179,6 +179,16 @@ mdlint:
179179 ruby:slim \
180180 /workdir/scripts/test-infra/mdlint.sh
181181
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+
182192helm-lint :
183193 helm lint --strict deployment/helm/node-feature-discovery/
184194
Original file line number Diff line number Diff line change 1+ # Configuration file for https://github.com/losisin/helm-values-schema-json
2+ values :
3+ - values.yaml
4+ output : values.schema.json
5+ k8sSchemaVersion : " v1.34.1"
6+ useHelmDocs : true
You can’t perform that action at this time.
0 commit comments