Skip to content

Commit

Permalink
Add make install, uninstall, purge commands (#813)
Browse files Browse the repository at this point in the history
Signed-off-by: Tamal Saha <[email protected]>
  • Loading branch information
tamalsaha authored May 29, 2019
1 parent 604af0d commit bab795c
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 @@ -248,6 +248,21 @@ lint: $(BUILD_DIRS)
$(BUILD_DIRS):
@mkdir -p $@

.PHONY: install
install:
@cd ../installer; \
APPSCODE_ENV=dev STASH_DOCKER_REGISTRY=$(REGISTRY) STASH_IMAGE_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 bab795c

Please sign in to comment.