You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
365 B
Groovy
14 lines
365 B
Groovy
def cluster_features = ['connect'] + execution.getVariable('connect-features')
|
|
|
|
def env = [
|
|
process_instance_id: execution.getProcessInstanceId(),
|
|
scope_id: contextScopeId,
|
|
smardigo_management_action: smardigoManagementAction,
|
|
stage: cluster.stage,
|
|
database_engine: 'postgres',
|
|
]
|
|
if (binding.hasVariable('extraVariables')) {
|
|
env << extraVariables
|
|
}
|
|
|
|
env |