19 lines
352 B
Makefile
19 lines
352 B
Makefile
lint--pre-commit:
|
|
pre-commit run --all-files --color always
|
|
|
|
lint--kubeconform:
|
|
kubeconform -strict -ignore-missing-schemas k8s/
|
|
|
|
SHELl=/bin/bash
|
|
lint--kubescore:
|
|
kube-score score $$(find k8s -type f -print -name "*.yaml")
|
|
|
|
lint--tflint:
|
|
tflint --recursive
|
|
|
|
|
|
lint:
|
|
make lint--pre-commit
|
|
make lint--kubeconform
|
|
make lint--kube
|
|
make lint--tflint
|