You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by jc...@apache.org on 2016/08/26 18:43:38 UTC

aurora git commit: containerizer documentation and example changed to non-deprecated syntax

Repository: aurora
Updated Branches:
  refs/heads/master 5cad046fc -> 4a2aff987


containerizer documentation and example changed to non-deprecated syntax

Bugs closed: AURORA-1754

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


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

Branch: refs/heads/master
Commit: 4a2aff987eac8597b0b7489c4479951962827ad7
Parents: 5cad046
Author: Tarun Gogineni <go...@frib.msu.edu>
Authored: Fri Aug 26 13:43:19 2016 -0500
Committer: Joshua Cohen <jc...@apache.org>
Committed: Fri Aug 26 13:43:19 2016 -0500

----------------------------------------------------------------------
 docs/features/containers.md              | 2 +-
 examples/jobs/docker/hello_docker.aurora | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/aurora/blob/4a2aff98/docs/features/containers.md
----------------------------------------------------------------------
diff --git a/docs/features/containers.md b/docs/features/containers.md
index 729a0ad..6b9f717 100644
--- a/docs/features/containers.md
+++ b/docs/features/containers.md
@@ -32,7 +32,7 @@ Example (available in the [Vagrant environment](../getting-started/vagrant.md)):
         role = 'docker-test',
         name = 'hello_docker',
         task = hello_world_docker,
-        container = Container(docker = Docker(image = 'python:2.7'))
+        container = Docker(image = 'python:2.7')
       )
     ]
 

http://git-wip-us.apache.org/repos/asf/aurora/blob/4a2aff98/examples/jobs/docker/hello_docker.aurora
----------------------------------------------------------------------
diff --git a/examples/jobs/docker/hello_docker.aurora b/examples/jobs/docker/hello_docker.aurora
index 47adb39..d5611e6 100644
--- a/examples/jobs/docker/hello_docker.aurora
+++ b/examples/jobs/docker/hello_docker.aurora
@@ -32,4 +32,4 @@ jobs = [
           role = 'docker-test',
           name = 'hello_docker',
           task = hello_world_docker,
-          container = Container(docker = Docker(image = 'python:2.7')))]
+          container = Docker(image = 'python:2.7'))]