mirror of
https://github.com/tubearchivist/tubearchivist.git
synced 2025-06-13 22:11:10 +00:00
14 lines
227 B
Makefile
14 lines
227 B
Makefile
default: test
|
|
|
|
RELEASE := helm-es-minikube
|
|
TIMEOUT := 1200s
|
|
|
|
install:
|
|
helm upgrade --wait --timeout=$(TIMEOUT) --install --values values.yaml $(RELEASE) ../../
|
|
|
|
test: install
|
|
helm test $(RELEASE)
|
|
|
|
purge:
|
|
helm del $(RELEASE)
|