A GitHub Action for using Kubeconform to validate Helm Charts in your workflows.
Supports Helm 3 only.
You can use the action as follows:
on: push
name: Helm / Validate
jobs:
kubeconform:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Validate
uses: nlamirault/helm-kubeconform-action@v0.1.0
with:
charts: ./charts
For each chart:
helm template
and validate the output as Kubernetes objects.For more information on inputs, see the API Documentation
Property | Default | Description |
---|---|---|
charts | . | The path to the directory containing your Chart(s) |