mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-27 15:52:14 +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
|