@@ -77,25 +77,27 @@ restart: stop start
7777run : install start
7878
7979start : check-fleet
80- # registry logger cache database (router)
80+ @# registry logger cache database (router)
81+ $(call echo_yellow,"Starting Deis! Deis will be functional once all services are reported as running... ")
8182 fleetctl --strict-host-key-checking=false start $(START_UNITS )
8283 $(call echo_yellow,"Waiting for deis-registry to start (this can take some time) ... " )
8384 @until fleetctl --strict-host-key-checking=false list-units | egrep -q " deis-registry.+(running|failed|dead)" ; do printf " \033[0;33mStatus:\033[0m " ; fleetctl --strict-host-key-checking=false list-units | grep " registry" | awk ' {printf $$3}' ; printf " \r" ; sleep 10; done
8485 $(call check_for_errors)
85- $(call echo_yellow,"Done! Waiting for deis-builder...")
8686
87- # builder
88- fleetctl --strict-host-key-checking=false submit builder/systemd/*
89- fleetctl --strict-host-key-checking=false start builder/systemd/*
90- @until fleetctl --strict-host-key-checking=false list-units | egrep -q "deis-builder.+(running|failed|dead)"; do printf "\033[0;33mStatus:\033[0m "; fleetctl --strict-host-key-checking=false list-units | grep "builder" | awk '{printf $$3}'; printf "\r" ; sleep 10; done
91- $(call check_for_errors)
87+ @# controller
9288 $(call echo_yellow,"Done! Waiting for deis-controller...")
93-
94- # controller
9589 fleetctl --strict-host-key-checking=false submit controller/systemd/*
9690 fleetctl --strict-host-key-checking=false start controller/systemd/*
9791 @until fleetctl --strict-host-key-checking=false list-units | egrep -q "deis-controller.+(running|failed|dead)"; do printf "\033[0;33mStatus:\033[0m "; fleetctl --strict-host-key-checking=false list-units | grep "controller" | awk '{printf $$3}'; printf "\r" ; sleep 10; done
92+
93+ @# builder
94+ $(call echo_yellow,"Done! Waiting for deis-builder to start (this can also take some time)... ")
95+ fleetctl --strict-host-key-checking=false submit builder/systemd/*
96+ fleetctl --strict-host-key-checking=false start builder/systemd/*
97+ @until fleetctl --strict-host-key-checking=false list-units | egrep -q "deis-builder.+(running|failed|dead)"; do printf "\033[0;33mStatus:\033[0m "; fleetctl --strict-host-key-checking=false list-units | grep "builder" | awk '{printf $$3}'; printf "\r" ; sleep 10; done
9898 $(call check_for_errors)
99+
100+ @# router
99101 @if [ "$$SKIP_ROUTER" = true ]; then \
100102 echo "\033[0;33mYou'll need to configure DNS and start the router manually for multi-node clusters.\033[0m" ; \
101103 echo "\033[0;33mRun 'make start-router' to schedule and start deis-router.\033[0m" ; \
0 commit comments