chore: add kubeconform, kube-score and tflint

This commit is contained in:
cătălin 2024-03-25 10:56:52 +01:00
commit c1da779cbc
No known key found for this signature in database
14 changed files with 27 additions and 34 deletions

16
Makefile Normal file
View file

@ -0,0 +1,16 @@
lint--pre-commit:
pre-commit run --all-files --color always
lint--kubeconform:
kubeconform -strict -ignore-missing-schemas k8s/
lint--kubescore:
kube-score score k8s/**.yaml
lint--tflint:
tflint --recursive
lint:
make lint--pre-commit
make lint--kubeconform
make lint--tflint