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

14 lines
233 B
Makefile

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