You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(Makefile): enable targets to work for non-Vagrant
Adds DEIS_HOSTS, which is set automatically or can be overridden
for non-Vagrant platforms. This is used by ssh_all to determine
which hosts to SSH into - previously, we used `vagrant ssh`,
which obviously only works on Vagrant.
This also updates all the Makefiles to use fleet as appropriate,
and to pull / build / etc. on all DEIS_HOSTS.
TESTING: try the various make commands on Vagrant and Rackspace/EC2
replaces #998
closes #811
if [ "$$LOCAL_VERSION"!="$$REMOTE_VERSION" ];then \
79
-
echo"Your fleetctl client version should match the server. Local version: $$LOCAL_VERSION, server version: $$REMOTE_VERSION. Uninstall your local version and install the latest build from https://github.com/coreos/fleet/releases";exit 1;\
80
-
fi
81
-
82
35
clean: uninstall
83
36
$(call ssh_all,'for c in $(ALL_COMPONENTS); do docker rm -f deis-$$c; done')
if [ "$$LOCAL_VERSION" != "$$REMOTE_VERSION" ]; then \
45
+
echo "Your fleetctl client version should match the server. Local version: $$LOCAL_VERSION, server version: $$REMOTE_VERSION. Uninstall your local version and install the latest build from https://github.com/coreos/fleet/releases"; exit 1; \
0 commit comments