mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-26 23:32:15 +00:00
11 lines
199 B
Makefile
11 lines
199 B
Makefile
create:
|
|
@echo "==> Creating deployment"
|
|
@kubectl create -f app.yaml
|
|
|
|
destroy:
|
|
@echo "==> Destroying deployment"
|
|
@kubectl delete -f app.yaml
|
|
@kubectl delete pvc -l app=tm
|
|
|
|
.PHONY: create destroy
|