Skip to content

Commit

Permalink
Add make install, uninstall, purge commands (#225)
Browse files Browse the repository at this point in the history
Signed-off-by: Tamal Saha <tamal@appscode.com>
  • Loading branch information
tamalsaha committed May 29, 2019
1 parent 1ce2140 commit e528ace
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,21 @@ lint: $(BUILD_DIRS)
$(BUILD_DIRS):
@mkdir -p $@

.PHONY: install
install:
@cd ../installer; \
APPSCODE_ENV=dev KUBEDB_DOCKER_REGISTRY=$(REGISTRY) KUBEDB_OPERATOR_TAG=$(TAG) ./deploy/stash.sh

.PHONY: uninstall
uninstall:
@cd ../installer; \
./deploy/stash.sh --uninstall

.PHONY: purge
purge:
@cd ../installer; \
./deploy/stash.sh --uninstall --purge

.PHONY: dev
dev: gen fmt push

Expand Down

0 comments on commit e528ace

Please sign in to comment.