8000 GitHub - igmor/drone-marathon: Drone plugins for deploy to Marathon
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

igmor/drone-marathon

 
 

Repository files navigation

drone-marathon

Build Status Coverage Status

Drone plugin to deploy applications to Marathon. For the usage information and a listing of the available options please take a look at the docs.

Build

Build the binary with the following command:

make build

Docker

Build the Docker image with the following command:

make docker

Please note incorrectly building the image for the correct x64 linux and with CGO disabled will result in an error when running the Docker image:

docker: Error response from daemon: Container command
'/bin/drone-marathon' not found or does not exist..

Usage

Build and publish from your current working directory:

docker run --rm \
  -e PLUGIN_SERVER=http://marathon.mycluster.io:8080 \
  -e PLUGIN_ID=myapp \
  -e PLUGIN_INSTANCES=1 \
  -e PLUGIN_CPUS=0.5 \
  -e PLUGIN_MEM=64.0 \
  -e PLUGIN_DOCKER_IMAGE=busybox \
  -e PLUGIN_CMD="while [ true ] ; do echo 'Hello Drone' ; sleep 5 ; done" \
  -e DRONE_COMMIT_SHA=d8dbe4d94f15fe89232e0402c6e8a0ddf21af3ab \
  -v $(pwd)/$(pwd) \
  -w $(pwd) \
  plugins/marathon

About

Drone plugins for deploy to Marathon

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%
0