mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-02-08 13:48:19 +00:00
18 lines
467 B
Makefile
18 lines
467 B
Makefile
|
default: test
|
||
|
|
||
|
RELEASE := helm-es-kind
|
||
|
TIMEOUT := 1200s
|
||
|
|
||
|
install:
|
||
|
helm upgrade --wait --timeout=$(TIMEOUT) --install --values values.yaml $(RELEASE) ../../
|
||
|
|
||
|
install-local-path:
|
||
|
kubectl apply -f https://raw.githubusercontent.com/rancher/local-path-provisioner/master/deploy/local-path-storage.yaml
|
||
|
helm upgrade --wait --timeout=$(TIMEOUT) --install --values values-local-path.yaml $(RELEASE) ../../
|
||
|
|
||
|
test: install
|
||
|
helm test $(RELEASE)
|
||
|
|
||
|
purge:
|
||
|
helm del $(RELEASE)
|