We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38c9379 commit 5395fe7Copy full SHA for 5395fe7
1 file changed
router/Makefile
@@ -22,16 +22,20 @@ full-clean: check-docker check-registry
22
docker images -q $(IMAGE_PREFIX)$(COMPONENT) | xargs docker rmi -f
23
24
install: check-deisctl
25
- deisctl scale $(COMPONENT)=1
+ deisctl scale $(COMPONENT)=3
26
27
uninstall: check-deisctl
28
deisctl scale $(COMPONENT)=0
29
30
start: check-deisctl
31
- deisctl start $(COMPONENT)
+ deisctl start $(COMPONENT)@1
32
+ deisctl start $(COMPONENT)@2
33
+ deisctl start $(COMPONENT)@3
34
35
stop: check-deisctl
- deisctl stop $(COMPONENT)
36
+ deisctl stop $(COMPONENT)@1
37
+ deisctl stop $(COMPONENT)@2
38
+ deisctl stop $(COMPONENT)@3
39
40
restart: stop start
41
0 commit comments