Skip to content

Commit 21fcbc6

Browse files
committed
Merge pull request #2791 from carmstrong/fix-router_deploy
fix(router): fix deploy Makefile target
2 parents b0e520e + 5395fe7 commit 21fcbc6

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)