Files
KnowStreaming/km-dist/helm/charts/elasticsearch/examples/microk8s/Makefile
2022-08-18 17:04:05 +08:00

14 lines
227 B
Makefile

default: test
RELEASE := helm-es-microk8s
TIMEOUT := 1200s
install:
helm upgrade --wait --timeout=$(TIMEOUT) --install --values values.yaml $(RELEASE) ../../
test: install
helm test $(RELEASE)
purge:
helm del $(RELEASE)