Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/VoltFramework/volt
A simple Mesos framework written in Go
https://github.com/VoltFramework/volt
Last synced: 1 day ago
JSON representation
A simple Mesos framework written in Go
- Host: GitHub
- URL: https://github.com/VoltFramework/volt
- Owner: VoltFramework
- License: apache-2.0
- Archived: true
- Created: 2014-07-12T23:05:11.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-22T07:12:49.000Z (about 8 years ago)
- Last Synced: 2024-08-04T04:06:46.757Z (3 months ago)
- Language: Protocol Buffer
- Size: 1.74 MB
- Stars: 232
- Watchers: 15
- Forks: 27
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-mesos - Volt
README
# ![Volt logo](https://raw.githubusercontent.com/VoltFramework/volt/master/static/img/logo.png)
*volt* is a simple Mesos framework written in Go.
![build](https://travis-ci.org/VoltFramework/volt.svg?branch=master)
## Installation
The following steps describe how to get started with the Volt framework.
### From Source
First get the go dependencies:
```sh
go get github.com/VoltFramework/volt/...
```Then you can compile `volt` with:
```sh
go install github.com/VoltFramework/volt
```If `$GOPATH/bin` is in your `PATH`, you can invoke `volt` from the CLI.
### Latest Release
To get started with the latest release, run the following commands on a mesos
master node:```
wget https://github.com/voltframework/volt/releases/download/v1.0.0-alpha/volt
chmod +x volt
./volt --master=localhost:5050
```### API Requests
#### Run a container with data volumes
```json
{
"cmd": "touch /data/volt",
"cpus": "0.1",
"mem": "32",
"docker_image": "busybox",
"volumes": [
{
"container_path":"/data",
"host_path":"/volumes/volt"
}
]
}
```## Creators
**Victor Vieux**
-
-**Isabel Jimenez**
-
-## Thanks
Thanks to [@dhammon](http://github.com/dhammon) for his work on [gozer](http://github.com/twitter/gozer)
## Licensing
Volt is licensed under the Apache License, Version 2.0. See LICENSE for full license text.