Skip to content

Commit

Permalink
Merge pull request #615 from mbaldessari/fix-validated-schema
Browse files Browse the repository at this point in the history
Fix validated-schema make target
  • Loading branch information
mbaldessari authored Jan 7, 2025
2 parents c0b5d25 + 5063467 commit 6be5db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ validate-cluster: ## Do some cluster validations before installing
validate-schema: ## validates values files against schema in common/clustergroup
$(eval VAL_PARAMS := $(shell for i in ./values-*.yaml; do echo -n "$${i} "; done))
@echo -n "Validating clustergroup schema of: "
@set -e; for i in $(VAL_PARAMS); do echo -n " $$i"; helm template common/clustergroup $(HELM_OPTS) -f "$${i}" >/dev/null; done
@set -e; for i in $(VAL_PARAMS); do echo -n " $$i"; helm template oci://quay.io/hybridcloudpatterns/clustergroup $(HELM_OPTS) -f "$${i}" >/dev/null; done
@echo

.PHONY: validate-prereq
Expand Down

0 comments on commit 6be5db5

Please sign in to comment.