Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This is a very basic check for our Helm charts. While this action is the main entry-point, it is using this CLI tool under the hood https://github.com/helm/chart-testing.
CR
This does a very basic check on our Helm charts. It validates the Chart schema and values.yaml file. It will then use
kind
to attempt to install the Helm charts. However, it will not validate the final manifests that were deployed to thekind
cluster nor if the actualCronJob
worked. It will simply check it was successful in installing the Helm chart.That said, we don't expect a lot of
churn
for this repo, or the charts, which resulted in the decision to not pursue extensive testing. For example, with tools like Terratest to check if theCronJob
worked or the use of golden files to validate the final manifests that were deployed.QA
qa_req 0 CI should pass as I already tested the action prior to this pull
Closes: #23