Fixed copy paste error on command. Added AURORA.VER to keep track of which Aurora version library has been tested with

This commit is contained in:
Renan DelValle 2016-08-09 13:29:28 -07:00
parent 93297f8c1a
commit f52e5105b8
2 changed files with 8 additions and 3 deletions

1
AURORA.VER Normal file
View file

@ -0,0 +1 @@
0.15.0

View file

@ -3,6 +3,10 @@
Go library for communicating with Apache Aurora. Go library for communicating with Apache Aurora.
Named after the northern lights (Aurora Borealis). Named after the northern lights (Aurora Borealis).
### Aurora Compatible version
Please see [AURORA.VER](./AURORA.VER) to see the latest Aurora version against which this
library has been tested against. Vendoring a working version is highly recommended.
## Usage ## Usage
### Using the Sample client with Thermos ### Using the Sample client with Thermos
@ -20,7 +24,7 @@ $ vagrant up
Download and run the Client to create a Thermos Job: Download and run the Client to create a Thermos Job:
``` ```
$ go get github.com/rdelval/gorealis $ go get github.com/rdelval/gorealis
$ cd go run $GOPATH/src/github.com/rdelval/gorealis $ cd $GOPATH/src/github.com/rdelval/gorealis
$ go run examples/client.go -executor=thermos -url=http://192.168.33.7:8081 -cmd=create $ go run examples/client.go -executor=thermos -url=http://192.168.33.7:8081 -cmd=create
``` ```
@ -41,12 +45,12 @@ $ vagrant up
Download and run the Client to create a Docker-Compose Job: Download and run the Client to create a Docker-Compose Job:
``` ```
$ go get github.com/rdelval/gorealis $ go get github.com/rdelval/gorealis
$ go run $GOPATH/src/github.com/rdelval/gorealis/examples/Client.go -executor=compose -url=http://192.168.33.7:8081 -cmd=create $ go run $GOPATH/src/github.com/rdelval/gorealis/examples/client.go -executor=compose -url=http://192.168.33.7:8081 -cmd=create
``` ```
From the [Aurora web UI](http://192.168.33.7:8081/scheduler/vagrant/prod/docker-compose/0), create struct dump by clicking on the task ID. From the [Aurora web UI](http://192.168.33.7:8081/scheduler/vagrant/prod/docker-compose/0), create struct dump by clicking on the task ID.
In the struct dump, find the port assigned to the task (named "port0"). In the struct dump, find the port assigned to the task (named "port0").
Navigate to the 192.168.33.7:`<assigned port>`. Currently the redis image being deployed is broken, so an error is expected. Navigate to the 192.168.33.7:`<assigned port>`.
If the page is not found, wait a few minutes while the docker image is downloaded and the container is deployed. If the page is not found, wait a few minutes while the docker image is downloaded and the container is deployed.
Finally, terminate the job: Finally, terminate the job: