mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-02-01 01:26:45 +00:00
20 lines
530 B
Makefile
20 lines
530 B
Makefile
|
default: test
|
||
|
|
||
|
include ../../../helpers/examples.mk
|
||
|
|
||
|
PREFIX := helm-es-multi
|
||
|
RELEASE := helm-es-multi-master
|
||
|
TIMEOUT := 1200s
|
||
|
|
||
|
install:
|
||
|
helm upgrade --wait --timeout=$(TIMEOUT) --install --values master.yaml $(PREFIX)-master ../../
|
||
|
helm upgrade --wait --timeout=$(TIMEOUT) --install --values data.yaml $(PREFIX)-data ../../
|
||
|
helm upgrade --wait --timeout=$(TIMEOUT) --install --values client.yaml $(PREFIX)-client ../../
|
||
|
|
||
|
test: install goss
|
||
|
|
||
|
purge:
|
||
|
helm del $(PREFIX)-master
|
||
|
helm del $(PREFIX)-data
|
||
|
helm del $(PREFIX)-client
|