You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by se...@apache.org on 2017/04/17 20:31:45 UTC

aurora git commit: Update to Mesos 1.2.0

Repository: aurora
Updated Branches:
  refs/heads/master cc2aa46f7 -> b847db8d7


Update to Mesos 1.2.0

Changelog: https://github.com/apache/mesos/blob/1.2.0/CHANGELOG

Reviewed at https://reviews.apache.org/r/58467/


Project: http://git-wip-us.apache.org/repos/asf/aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/b847db8d
Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/b847db8d
Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/b847db8d

Branch: refs/heads/master
Commit: b847db8d74c9147222a24d07ad509bd2eb5dacd4
Parents: cc2aa46
Author: Stephan Erb <se...@apache.org>
Authored: Mon Apr 17 22:31:17 2017 +0200
Committer: Stephan Erb <se...@apache.org>
Committed: Mon Apr 17 22:31:17 2017 +0200

----------------------------------------------------------------------
 3rdparty/python/BUILD         | 2 +-
 RELEASE-NOTES.md              | 4 ++--
 Vagrantfile                   | 2 +-
 build-support/packer/build.sh | 2 +-
 build.gradle                  | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/aurora/blob/b847db8d/3rdparty/python/BUILD
----------------------------------------------------------------------
diff --git a/3rdparty/python/BUILD b/3rdparty/python/BUILD
index 7648ac8..4aa837e 100644
--- a/3rdparty/python/BUILD
+++ b/3rdparty/python/BUILD
@@ -11,7 +11,7 @@
 # limitations under the License.
 #
 
-MESOS_REV = '1.1.0'
+MESOS_REV = '1.2.0'
 
 python_requirement_library(
   name = 'mesos.interface',

http://git-wip-us.apache.org/repos/asf/aurora/blob/b847db8d/RELEASE-NOTES.md
----------------------------------------------------------------------
diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md
index 5babea5..1ee0d01 100644
--- a/RELEASE-NOTES.md
+++ b/RELEASE-NOTES.md
@@ -3,6 +3,8 @@
 
 ### New/updated:
 
+- Update to Mesos 1.2.0. Please upgrade Aurora to 0.18 before upgrading Mesos to 1.2.0 if you rely
+  on Mesos filesystem images.
 - Add message parameter to `killTasks` RPC.
 - Add `prune_tasks` endpoint to `aurora_admin`. See `aurora_admin prune_tasks -h` for usage information.
 - Add support for per-task volume mounts for Mesos containers to the Aurora config DSL.
@@ -13,8 +15,6 @@
   driver. Users that want to use the HTTP API should use `V1_MESOS`.
   Performance sensitive users should stick with the `SCHEDULER_DRIVER` or
   `V0_MESOS` drivers.
-- Add support for new MesosContainerizer rolled out in Mesos 1.2.0.
-  Please upgrade Aurora to 0.18 before upgrading Mesos to 1.2.0.
 - Add observer command line options to control the resource collection interval
   for observed tasks. See [here](docs/reference/observer-configuration.md) for details.
 

http://git-wip-us.apache.org/repos/asf/aurora/blob/b847db8d/Vagrantfile
----------------------------------------------------------------------
diff --git a/Vagrantfile b/Vagrantfile
index d1c536b..ac10630 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.12"
+  config.vm.box_version = "0.0.13"
 
   config.vm.define "devcluster" do |dev|
     dev.vm.network :private_network, ip: "192.168.33.7", :auto_config => false

http://git-wip-us.apache.org/repos/asf/aurora/blob/b847db8d/build-support/packer/build.sh
----------------------------------------------------------------------
diff --git a/build-support/packer/build.sh b/build-support/packer/build.sh
index 548cf37..7b7914c 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=1.1.0
+readonly MESOS_VERSION=1.2.0
 
 function remove_unused {
   # The default ubuntu/trusty64 image includes juju-core, which adds ~300 MB to our image.

http://git-wip-us.apache.org/repos/asf/aurora/blob/b847db8d/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index bca6698..b7a4f05 100644
--- a/build.gradle
+++ b/build.gradle
@@ -370,7 +370,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:1.1.0'
+  compile 'org.apache.mesos:mesos:1.2.0'
   compile "org.apache.httpcomponents:httpclient:${httpclientRev}"
   compile "org.apache.httpcomponents:httpcore:${httpcoreRev}"
   compile "org.apache.shiro:shiro-guice:${shiroRev}"