This commit is contained in:
Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs 2022-07-26 21:56:16 +02:00
parent ad184ab678
commit f5a67d0150
No known key found for this signature in database
GPG key ID: BC5E2BD907F9A8EC
10 changed files with 387 additions and 0 deletions

15
.taskfiles/charts.yaml Normal file
View file

@ -0,0 +1,15 @@
---
version: "3"
tasks:
lint:
desc: Run ct-lint on charts
cmds:
- docker run --rm -it --workdir=/data --volume $(pwd):/data quay.io/helmpack/chart-testing:v3.6.0 ct lint --config .ci/ct/ct-lint.yaml
silent: true
lint-all:
desc: Run ct-lint on all charts
cmds:
- docker run --rm -it --workdir=/data --volume $(pwd):/data quay.io/helmpack/chart-testing:v3.6.0 ct lint --config .ci/ct/ct-lint.yaml --all
silent: true