deployServiceHosts

abstract fun deployServiceHosts(hostMatcher: IviServiceHostMatcher): IviServiceHostDeploymentConfigurator

Deploys the hosts matching the given hostMatcher in this deployment with the default deployment configuration.

Use one of the following methods to create a hostMatcher instance:

The default deployment configuration can be overridden through the returned IviServiceHostDeploymentConfigurator instance.

Any deployment configuration associated to the deployed hosts is not applied. To apply the deployment configuration associated to the deployed hosts, use applyDefaultDeployments instead.


abstract fun deployServiceHosts(vararg hosts: IviServiceHostConfig): IviServiceHostDeploymentConfigurator
abstract fun deployServiceHosts(hosts: List<IviServiceHostConfig>): IviServiceHostDeploymentConfigurator

Deploys the given hosts in this deployment with the default deployment configuration.

The default deployment configuration can be overridden through the returned IviServiceHostDeploymentConfigurator instance.

Any deployment configuration associated to the given hosts is not applied. To apply the deployment configuration associated to the given hosts, use applyDefaultDeployments instead.