Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds helm schema validation test to the test suite #4101

Merged
merged 1 commit into from
Feb 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ push-release-chart: $(ensure-build-image)
CHART_DIR=install/.helm-$(RELEASE_VERSION)/agones $(MAKE) push-chart

# Run all tests
test: $(ensure-build-image) test-go test-sdks test-install-yaml site-test
test: $(ensure-build-image) test-go test-sdks test-install-yaml site-test helm-lint

# Run go tests
test-go: $(ensure-build-image)
Expand Down Expand Up @@ -875,3 +875,6 @@ install-release: $(ensure-build-image)
$(DOCKER_RUN_ARGS) \
$(build_tag) /go/src/agones.dev/agones/build/install-release.sh

# Validates the Helm values.yaml file against the values.schema.json file.
helm-lint:
$(DOCKER_RUN) bash -c 'cd $(mount_path)/install/helm/agones && helm lint .'