globalDeployments

abstract fun globalDeployments(action: Action<RuntimeDeploymentContainer.Global>)

Allows the configuration of global runtime deployments through the given action as a lambda. Only global IVI service hosts are deployed in global runtime deployments.

Example

globalDeployments {
create(RuntimeDeploymentIdentifier.globalRuntime) {
applyDefaultDeployments(all())
}
}

This creates the "GlobalRuntime" with the default configuration.