Return-Path: X-Original-To: apmail-aurora-commits-archive@minotaur.apache.org Delivered-To: apmail-aurora-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C59FE19DF1 for ; Wed, 20 Apr 2016 15:27:43 +0000 (UTC) Received: (qmail 93296 invoked by uid 500); 20 Apr 2016 15:27:43 -0000 Delivered-To: apmail-aurora-commits-archive@aurora.apache.org Received: (qmail 93252 invoked by uid 500); 20 Apr 2016 15:27:43 -0000 Mailing-List: contact commits-help@aurora.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@aurora.apache.org Delivered-To: mailing list commits@aurora.apache.org Received: (qmail 93243 invoked by uid 99); 20 Apr 2016 15:27:43 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Apr 2016 15:27:43 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7696CDFF13; Wed, 20 Apr 2016 15:27:43 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jcohen@apache.org To: commits@aurora.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: aurora git commit: Revert "Revert "Upgrade to Mesos 0.27.2"" Date: Wed, 20 Apr 2016 15:27:43 +0000 (UTC) Repository: aurora Updated Branches: refs/heads/master d1dfd16a3 -> 15eaa5d1e Revert "Revert "Upgrade to Mesos 0.27.2"" This reverts commit 81f52e4ae6a8368cc7667d5cc758fc91fb3718f1. Also bump box version to 0.0.5 to pick up mesos 27. Reviewed at https://reviews.apache.org/r/46336/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/15eaa5d1 Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/15eaa5d1 Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/15eaa5d1 Branch: refs/heads/master Commit: 15eaa5d1e568751b29e79a5eb4c6167ae240f276 Parents: d1dfd16 Author: Joshua Cohen Authored: Wed Apr 20 10:27:23 2016 -0500 Committer: Joshua Cohen Committed: Wed Apr 20 10:27:23 2016 -0500 ---------------------------------------------------------------------- 3rdparty/python/BUILD | 2 +- RELEASE-NOTES.md | 4 ++-- Vagrantfile | 2 +- build-support/packer/build.sh | 6 +++--- build.gradle | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aurora/blob/15eaa5d1/3rdparty/python/BUILD ---------------------------------------------------------------------- diff --git a/3rdparty/python/BUILD b/3rdparty/python/BUILD index e7a1fe4..85db569 100644 --- a/3rdparty/python/BUILD +++ b/3rdparty/python/BUILD @@ -11,7 +11,7 @@ # limitations under the License. # -MESOS_REV = '0.26.0' +MESOS_REV = '0.27.2' python_requirement_library( name = 'mesos.interface', http://git-wip-us.apache.org/repos/asf/aurora/blob/15eaa5d1/RELEASE-NOTES.md ---------------------------------------------------------------------- diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 0ccc341..4b810f2 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,5 +1,5 @@ 0.14.0 (Not yet released) ------- +======= ### New/updated: @@ -7,7 +7,7 @@ scheduler leader election. You can enable this with the new `-zk_use_curator` scheduler argument. - Adding --nosetuid-health-checks flag to control whether the executor runs health checks as the job's role's user. - +- Upgraded Mesos to 0.27.2 0.13.0 ------ http://git-wip-us.apache.org/repos/asf/aurora/blob/15eaa5d1/Vagrantfile ---------------------------------------------------------------------- diff --git a/Vagrantfile b/Vagrantfile index 606dfa4..3f126ee 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -25,7 +25,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.hostname = "aurora.local" # See build-support/packer/README.md for instructions on updating this box. config.vm.box = "apache-aurora/dev-environment" - config.vm.box_version = "0.0.4" + config.vm.box_version = "0.0.5" config.vm.define "devcluster" do |dev| dev.vm.network :private_network, ip: "192.168.33.7" http://git-wip-us.apache.org/repos/asf/aurora/blob/15eaa5d1/build-support/packer/build.sh ---------------------------------------------------------------------- diff --git a/build-support/packer/build.sh b/build-support/packer/build.sh index 146e62e..658dbc4 100644 --- a/build-support/packer/build.sh +++ b/build-support/packer/build.sh @@ -17,7 +17,7 @@ set -o errexit set -o nounset set -o verbose -readonly MESOS_VERSION=0.26.0 +readonly MESOS_VERSION=0.27.2 function remove_unused { # The default ubuntu/trusty64 image includes juju-core, which adds ~300 MB to our image. @@ -60,8 +60,8 @@ function install_docker { } function install_mesos { - URL_BASE='http://downloads.mesosphere.io/master/ubuntu/14.04' - DEB_URL="$URL_BASE/mesos_${MESOS_VERSION}-0.2.145.ubuntu1404_amd64.deb" + URL_BASE='http://repos.mesosphere.com/ubuntu/pool/main/m/mesos' + DEB_URL="$URL_BASE/mesos_${MESOS_VERSION}-2.0.15.ubuntu1404_amd64.deb" deb=$(basename $DEB_URL) wget -c "$DEB_URL" dpkg --install $deb http://git-wip-us.apache.org/repos/asf/aurora/blob/15eaa5d1/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index e4e42fd..0d0d94a 100644 --- a/build.gradle +++ b/build.gradle @@ -365,7 +365,7 @@ dependencies { compile "org.apache.curator:curator-client:${curatorRev}" compile "org.apache.curator:curator-framework:${curatorRev}" compile "org.apache.curator:curator-recipes:${curatorRev}" - compile 'org.apache.mesos:mesos:0.26.0' + compile 'org.apache.mesos:mesos:0.27.2' compile "org.apache.shiro:shiro-guice:${shiroRev}" compile "org.apache.shiro:shiro-web:${shiroRev}" compile "org.apache.zookeeper:zookeeper:${zookeeperRev}"