21 lines
496 B
Makefile
21 lines
496 B
Makefile
|
|
all: lint kubeval test package
|
|
|
|
lint:
|
|
helm lint charts/onechart/
|
|
|
|
kubeval:
|
|
rm -rf manifests && true
|
|
mkdir manifests
|
|
helm template charts/onechart --output-dir manifests
|
|
find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.13.0
|
|
find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.18.0
|
|
|
|
test:
|
|
helm unittest charts/onechart
|
|
|
|
package:
|
|
helm package charts/onechart
|
|
mv onechart*.tgz docs
|
|
helm repo index docs --url https://chart.onechart.dev
|