Back to index
Summary
Creates a new process for an application or component.projectNameStringrequiredThe name for the project that must be unique among all projects. processNameStringrequiredThe name of the process. applicationNameStringoptionalThe name of the application, if the process is owned by an application. componentApplicationNameStringoptionalIf specified, the component is scoped to this application not the project. componentNameStringoptionalThe name of the component, if the process is owned by a component. credentialNameStringoptionalThe name of a credential to attach to this process. descriptionStringoptionalComment text describing this object that is not interpreted at all by CloudBees CD/RO. exclusiveEnvironmentBooleanoptionalTrue if environment is exclusive to the application or service process. microserviceApplicationNameStringoptionalIf specified, the microservice is scoped to an application. microserviceNameStringoptionalThe name of the microservice, if the process is owned by a microservice. processTypeStringoptionalDefines type of action performed by the process. Possible values: "DEPLOY" , "OTHER" , "UNDEPLOY" smartUndeployEnabledBooleanoptionalTrue if smart deploy should be enabled for the undeploy component process. timeLimitStringoptionalMaximum amount of time the step can execute; abort if it exceeds this time. timeLimitUnitsStringoptionalUnits for step time limit: seconds, minutes, or hours. Possible values: "hours" , "minutes" , "seconds" workingDirectoryStringoptionalWorking directory in which to execute the command for this process. A relative name is interpreted relative to the root directory for the job's workspace. workspaceNameStringoptionalThe name of the default workspace for this process. |
Usage
Perl
$cmdr->createProcess( "test-projectName", # projectName "test-processName" # processName # optionals );
ectool
ectool createProcess \ "test-projectName" `# projectName` \ "test-processName" `# processName` \ # optionals
Examples
Perl
To create a component process in a master component:
$cmdr->createProcess('Default', 'Deploy', {componentName => 'WAR file'});
To create a component process in a specific application:
$cmdr->createProcess('Default', 'Deploy', {componentName => 'WAR file', componentApplicationName => 'Shopping Cart'});
To create an application process:
$cmdr->createProcess('Default', 'Deploy', {applicationName => 'Shopping Cart'});
To create a microservice process:
$cmdr->createProcess('Default', 'Deploy', {microserviceName => 'myapp-ms', microserviceApplicationName => 'myapp'});
ectool
To create a component process in a master component:
ectool createProcess 'Default' 'Deploy' --componentName 'WAR file'
To create a component process in a specific application:
ectool createProcess 'Default' 'Deploy' --componentName 'WAR file' --componentApplicationName 'Shopping Cart'
To create an application process:
ectool createProcess 'Default' 'Deploy' --applicationName 'Shopping Cart'
To create a microservice process:
ectool createProcess 'Default' 'Deploy' --microserviceName 'myapp-ms' --microserviceApplicationName 'myapp'