We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9faeab commit e9cc7ffCopy full SHA for e9cc7ff
1 file changed
Makefile
@@ -29,8 +29,8 @@ docker-build: check-docker
29
30
deploy: docker-build docker-push
31
sed 's#\(image:\) .*#\1 $(IMAGE)#' /tmp/deis-$(COMPONENT) | kubectl apply --validate=true -f -
32
- kubectl scale rc deis-workflow --replicas 0 --namespace deis
33
- kubectl scale rc deis-workflow --replicas $(DESIRED_REPLICAS) --namespace deis
+ kubectl scale rc deis-$(COMPONENT) --replicas 0 --namespace deis
+ kubectl scale rc deis-$(COMPONENT) --replicas $(DESIRED_REPLICAS) --namespace deis
34
35
clean: check-docker
36
docker rmi $(IMAGE)
0 commit comments