Skip to content

Commit 5395fe7

Browse files
committed
fix(router): fix deploy Makefile target
1 parent 38c9379 commit 5395fe7

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

router/Makefile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,20 @@ full-clean: check-docker check-registry
2222
docker images -q $(IMAGE_PREFIX)$(COMPONENT) | xargs docker rmi -f
2323

2424
install: check-deisctl
25-
deisctl scale $(COMPONENT)=1
25+
deisctl scale $(COMPONENT)=3
2626

2727
uninstall: check-deisctl
2828
deisctl scale $(COMPONENT)=0
2929

3030
start: check-deisctl
31-
deisctl start $(COMPONENT)
31+
deisctl start $(COMPONENT)@1
32+
deisctl start $(COMPONENT)@2
33+
deisctl start $(COMPONENT)@3
3234

3335
stop: check-deisctl
34-
deisctl stop $(COMPONENT)
36+
deisctl stop $(COMPONENT)@1
37+
deisctl stop $(COMPONENT)@2
38+
deisctl stop $(COMPONENT)@3
3539

3640
restart: stop start
3741

0 commit comments

Comments
 (0)