Skip to content

Configuration

Simon Jahreiß edited this page Feb 1, 2017 · 9 revisions

This page and it’s subpages describe how to configure the plugin within your build script.

Overview

The plugin accepts a list of EnvironmentExtensions in the deployer closure.

build.gradle
deployer {
    kubernetes { // <-- EnvironmentExtension
        ...
    }
    marathon {   // <-- EnvironmentExtension
        ...
    }
}

Extension hierarchy

The extension hierarchy looks like this

EnvironmentExtension
|
|___AuthExtension
|    |___TokenInitializer
|
|___SSLExtension

Clone this wiki locally