Skip to content
This repository has been archived by the owner on Jan 22, 2020. It is now read-only.

New Mesos-go bindings integration #17

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

config.vm.box = "mesos-demo"
# config.vm.box_url = "http://downloads.mesosphere.io/demo/mesos-demo.box"
config.vm.box_url = "http://downloads.mesosphere.io/demo/mesos-demo.box"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lets not hardcode the box URL since this might change. Its better to keep this in the documentation page, rather than over here.


# Create a private network, which allows host-only access to the machine
# using a specific IP.
Expand Down
10 changes: 7 additions & 3 deletions go/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ Once you are ssh'd into the `mesos-demo` VM:
```bash
cd hostfiles/go
export GOPATH=$PWD
go get code.google.com/p/goprotobuf/{proto,protoc-gen-go}
go get github.com/mesosphere/mesos-go/mesos
go get golang.org/x/net/context
go get code.google.com/p/go-uuid/uuid
go get github.com/golang/glog
go get github.com/gogo/protobuf/proto
go get github.com/stretchr/testify/mock
go get github.com/mesos/mesos-go/mesos
go install github.com/mesosphere/rendler/scheduler
./bin/scheduler -seed http://mesosphere.io -master 127.0.1.1:5050 -local
./bin/scheduler -seed http://mesosphere.com -master 127.0.1.1:5050 -local
```

### Generate graph
Expand Down
Loading