From 312d54c01427ea6ac0481ebf36e75bf29084113b Mon Sep 17 00:00:00 2001 From: Jason Riddle Date: Sat, 11 Jul 2015 19:33:11 -0400 Subject: [PATCH 1/2] Add KUBE_RELEASE_RUN_TESTS=n to suggestion Without KUBE_RELEASE_RUN_TESTS=n, it can take quite a while to build all of the necessary binaries since the tests have to run. --- cluster/vagrant/provision-master.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/vagrant/provision-master.sh b/cluster/vagrant/provision-master.sh index 720cbe2af96..09b04f69322 100755 --- a/cluster/vagrant/provision-master.sh +++ b/cluster/vagrant/provision-master.sh @@ -32,7 +32,7 @@ systemctl restart network function release_not_found() { echo "It looks as if you don't have a compiled version of Kubernetes. If you" >&2 - echo "are running from a clone of the git repo, please run ./build/release.sh." >&2 + echo "are running from a clone of the git repo, please run 'KUBE_RELEASE_RUN_TESTS=n ./build/release.sh.'" >&2 echo "Note that this requires having Docker installed. If you are running " >&2 echo "from a release tarball, something is wrong. Look at " >&2 echo "http://kubernetes.io/ for information on how to contact the development team for help." >&2 From b1fcb33c56cab5c60a08bfe130cf439fefe46670 Mon Sep 17 00:00:00 2001 From: Jason Riddle Date: Mon, 13 Jul 2015 13:36:00 -0400 Subject: [PATCH 2/2] Change suggestion to use make quick-release --- cluster/vagrant/provision-master.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/vagrant/provision-master.sh b/cluster/vagrant/provision-master.sh index 09b04f69322..9135179a3ed 100755 --- a/cluster/vagrant/provision-master.sh +++ b/cluster/vagrant/provision-master.sh @@ -32,7 +32,7 @@ systemctl restart network function release_not_found() { echo "It looks as if you don't have a compiled version of Kubernetes. If you" >&2 - echo "are running from a clone of the git repo, please run 'KUBE_RELEASE_RUN_TESTS=n ./build/release.sh.'" >&2 + echo "are running from a clone of the git repo, please run 'make quick-release'." >&2 echo "Note that this requires having Docker installed. If you are running " >&2 echo "from a release tarball, something is wrong. Look at " >&2 echo "http://kubernetes.io/ for information on how to contact the development team for help." >&2