mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-02-01 01:26:45 +00:00
14 lines
233 B
Makefile
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)
|