All Projects → mesosphere → mesos-utils

mesosphere / mesos-utils

Licence: Apache-2.0 license
Utilities for building distributed systems on top of mesos

Programming Languages

scala
5932 projects

Projects that are alternatives of or similar to mesos-utils

mesosaurus
Mesos task load simulator framework for (cluster and Mesos) performance analysis
Stars: ✭ 58 (+141.67%)
Mutual labels:  dcos, dcos-orchestration-guild
scala-sbt-mesos-framework.g8
No description or website provided.
Stars: ✭ 23 (-4.17%)
Mutual labels:  dcos, dcos-orchestration-guild
cd-demo
A continuous delivery demo using Jenkins on DC/OS.
Stars: ✭ 36 (+50%)
Mutual labels:  dcos, dcos-orchestration-guild
marathon-example-plugins
Example Plugins for Marathon Plugin Interface
Stars: ✭ 22 (-8.33%)
Mutual labels:  dcos, dcos-orchestration-guild
Marathon
Deploy and manage containers (including Docker) on top of Apache Mesos at scale.
Stars: ✭ 4,035 (+16712.5%)
Mutual labels:  dcos, dcos-orchestration-guild
chronos-utils
Command line utilities for interacting with Airbnb Chronos
Stars: ✭ 31 (+29.17%)
Mutual labels:  dcos, dcos-orchestration-guild
docker-mesos-marathon-screencast
The scripts used in the Docker Clustering on Mesos with Marathon screencast.
Stars: ✭ 51 (+112.5%)
Mutual labels:  dcos, dcos-orchestration-guild
star
Test program for network policies.
Stars: ✭ 19 (-20.83%)
Mutual labels:  dcos
microservices-demo.github.io
The Microservices Demo website.
Stars: ✭ 65 (+170.83%)
Mutual labels:  dcos
kubernetes-security-benchmark
A simple way to evaluate the security of your Kubernetes deployment against sets of best practices defined by various community sources
Stars: ✭ 27 (+12.5%)
Mutual labels:  dcos
Chaos
A lightweight framework for writing REST services in Scala.
Stars: ✭ 248 (+933.33%)
Mutual labels:  dcos
dcos-mesos-modules
Mesos Modules used in DC/OS
Stars: ✭ 16 (-33.33%)
Mutual labels:  dcos
reactive-graphql
A GraphQL implementation based around RxJS, very well suited for client side only GraphQL usage
Stars: ✭ 58 (+141.67%)
Mutual labels:  dcos
letsencrypt-dcos
Let's Encrypt DC/OS!
Stars: ✭ 39 (+62.5%)
Mutual labels:  dcos
coreos-setup
Deprecated. See DCOS Community Edition for how to currently deploy Mesos on CoreOS
Stars: ✭ 27 (+12.5%)
Mutual labels:  dcos
dcos-net
A networking layer of DC/OS
Stars: ✭ 44 (+83.33%)
Mutual labels:  dcos
container-service-discovery
Service Discovery in Container Orchestration Frameworks on AWS
Stars: ✭ 45 (+87.5%)
Mutual labels:  dcos
marathon-slack
Integration for Marathon's Event Bus with Slack
Stars: ✭ 42 (+75%)
Mutual labels:  dcos
dcos-oauth
DC/OS OAuth Service (only used up to DC/OS version 1.12)
Stars: ✭ 22 (-8.33%)
Mutual labels:  dcos
mesos-deb-packaging
Mesos package for Debian, Ubuntu, CentOS, RHEL, and Fedora
Stars: ✭ 58 (+141.67%)
Mutual labels:  dcos

Mesos Utils

Scala utilities for building distributed systems on top of Mesos.

Usage

We cut releases for each recent Mesos version. Current releases are:

  • Mesos 0.16.0 - mesos-utils 0.16.0-2
  • Mesos 0.17.0 - mesos-utils 0.17.0-2
  • Mesos 0.18.2 - mesos-utils 0.18.2-2
  • Mesos 0.19.0 - mesos-utils 0.19.0-1
  • Mesos 0.20.0 - mesos-utils 0.20.0-2 (cross-built for Scala 2.10 and 2.11)
  • Mesos 0.20.1 - mesos-utils 0.20.1-1 (cross-built for Scala 2.10 and 2.11)
  • Mesos 0.21.0 - mesos-utils 0.21.0-1 (cross-built for Scala 2.10 and 2.11)
  • Mesos 0.21.1 - mesos-utils 0.21.1 (cross-built for Scala 2.10 and 2.11)
  • Mesos 0.22.0 - mesos-utils 0.22.0-1 (cross-built for Scala 2.10 and 2.11)
  • Mesos 0.22.1 - mesos-utils 0.22.1-1 (cross-built for Scala 2.10 and 2.11)
  • Mesos 0.23.0 - mesos-utils 0.23.0 (cross-built for Scala 2.10 and 2.11)
  • Mesos 0.24.0 - mesos-utils 0.24.0 (cross-built for Scala 2.10 and 2.11)
  • Mesos 0.25.0 - mesos-utils 0.25.0 (cross-built for Scala 2.10 and 2.11)

Maven

Add the Mesosphere repository and the dependency to your pom.xml:

<properties>
    <mesos-utils.version>0.25.0</mesos-utils.version>
</properties>
...
<repositories>
    <repository>
        <id>mesosphere-repo</id>
        <name>Mesosphere Repo</name>
        <url>http://downloads.mesosphere.io/maven</url>
    </repository>
</repositories>
...
<dependencies>
    <dependency>
        <groupId>mesosphere</groupId>
        <artifactId>mesos-utils_2.11</artifactId>
        <version>${mesos-utils.version}</version>
    </dependency>
</dependencies>

SBT

Add this to your SBT config:

resolvers += "Mesosphere Repo" at "http://downloads.mesosphere.io/maven"
libraryDependencies += "mesosphere" %% "mesos-utils" % "0.25.0"

Developing

To deploy a new version of mesos-utils, simply run

$ sbt release

and follow the prompts.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].