feat(helm): add helm validator to ci
This commit is contained in:
parent
c4f78b59ff
commit
98177ec860
1 changed files with 19 additions and 0 deletions
19
.github/workflows/validate-helm-charts.yml
vendored
Normal file
19
.github/workflows/validate-helm-charts.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
name: Validate Helm Charts
|
||||
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
kubeconform:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
|
||||
- name: Generate and validate releases
|
||||
uses: shivjm/helm-kubeconform-action@v0.2.0
|
||||
with:
|
||||
additionalSchemaPaths: |
|
||||
schemas/{{ .ResourceKind }}.json
|
||||
chartsDirectory: "charts"
|
Loading…
Reference in a new issue