marathon-example-plugins icon indicating copy to clipboard operation
marathon-example-plugins copied to clipboard

Example Plugins for Marathon Plugin Interface

Results 11 marathon-example-plugins issues
Sort by recently updated
recently updated
newest added

I am starting marathon with /etc/default/marathon and MESOSPHERE_HTTP_CREDENTIALS=bla:testpassword this is my marathon plugin.conf ``` { "plugins": { "capabilities": { "plugin": "mesosphere.marathon.plugin.task.RunSpecTaskProcessor", "implementation": "com.criteo.marathon.CapabilitiesPlugin" }, "authorization": { "plugin": "mesosphere.marathon.plugin.auth.Authorizer", "implementation": "mesosphere.marathon.example.plugin.javaauth.JavaAuthorizer",...

Hi, I built the Marathon Vault Plugin jar based on blackgolds src: https://github.com/blackgold/marathon-vault-plugin I have secrets enabled in Marathon, plugin_conf, plugin_dir set up and Marathon is trying to load the...

while executing marathon --plugin_dir=/etc/marathon/marathon-example-plugins-1.3.5/target/pack/lib --plugin_conf=/etc/marathon/plugins/configuration.json --master=http://master-ip:5050 i am getting below error can you please help me out. ERROR Terminating due to uncaught exception in thread main:1 (mesosphere.marathon.MarathonApp:main) com.google.inject.CreationException: Unable to...

It asks for hardcoded passwords in prompt, ACLs works fine ... but "Create Application" and "Edit" in configuration tab - clicking and nothing happening. Marathon version used -> 1.3.10 Do...

There are no examples for the SchedulerPlugin extension

Hello, I am getting the following dependency issue while trying to build the plugins: ```# sbt clean pack [info] Loading project definition from /root/marathon-example-plugins/project [info] Set current project to plugins...

Hi, Upgraded Marathon from 1.1.1 to 1.3.6 and Marathon failed to comeup due to Auth Plugin issue. Tried the fix provided by https://github.com/mesosphere/marathon-example-plugins/pull/15 which helped to bring Marathon up and...

When I try to run marathon 1.3.1 with this plugin, it always gave the error of not being able to find the method of `play.api.libs.json.JsLookup`. ``` [2016-10-07 09:50:02,240] ERROR Terminating...

https://github.com/mesosphere/marathon-example-plugins/blob/master/javaauth/src/main/java/mesosphere/marathon/example/plugin/javaauth/Action.java is still defined according to the old definition before Marathon 1.1.0. Please make changes to Actions.java in accordance to https://github.com/mesosphere/marathon/commit/549d9769497f8382d651fd740028b77df86c1ca6

How do we access the Plugin Configuration when we implement the Marathon auth Plugin interface in Java. For e.g in the Scala example plugin code: https://github.com/mesosphere/marathon-example-plugins/blob/8d8a933666231d09c13dd157d59e0d30f530ee69/auth/src/main/scala/mesosphere/marathon/example/plugin/auth/ExampleAuthenticator.scala#L46 How do we access...