-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BEE-43082 [DslDeploy] Microservice process formal parameters are not …
…changed after run Import Dsl with overwrite true (#111)
- Loading branch information
Showing
7 changed files
with
228 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
2024-03.01 Valera Fessler <[email protected]> | ||
* 4.3.1: BEE-43082 - Add child process entities support for the microservice container entity | ||
|
||
2023-10.05 Valera Fessler <[email protected]> | ||
* 4.3.0: BEE-38889 - Switched perl from old ec-perl (5.8.9) to new one cb-perl (5.32.1) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
project 'BEE-43082', { | ||
tracked = '1' | ||
|
||
application 'BEE-43082', { | ||
applicationType = 'microservice' | ||
|
||
microservice 'BEE-43082', { | ||
definitionSource = 'git' | ||
definitionSourceParameter = [ | ||
'branch': 'test', | ||
'config': 'test', | ||
'repoUrl': 'test', | ||
] | ||
definitionType = 'helm' | ||
deployParameter = [ | ||
'chart': 'test', | ||
'releaseName': 'test', | ||
] | ||
|
||
process 'Deploy Microservice Process', { | ||
description = 'System generated process for microservice deployment' | ||
processType = 'DEPLOY' | ||
|
||
formalParameter 'p1', { | ||
type = 'entry' | ||
orderIndex = '1' | ||
} | ||
formalParameter 'p2', { | ||
type = 'entry' | ||
orderIndex = '2' | ||
} | ||
|
||
processStep 'Retrieve Artifact', { | ||
description = 'System generated step to retrieve microservice definition artifact' | ||
processStepType = 'plugin' | ||
subprocedure = 'Source Provider' | ||
subproject = '/plugins/EC-Git/project' | ||
} | ||
|
||
processStep 'Deploy Microservice', { | ||
description = 'System generated step to deploy microservice' | ||
processStepType = 'plugin' | ||
subprocedure = 'Deploy Service' | ||
subproject = '/plugins/EC-Helm/project' | ||
} | ||
|
||
processDependency 'Retrieve Artifact', targetProcessStepName: 'Deploy Microservice' | ||
} | ||
} | ||
|
||
process 'Deploy Application', { | ||
description = 'System generated process for microservice application' | ||
processType = 'DEPLOY' | ||
|
||
formalParameter 'ec_BEE-43082-run', defaultValue: '1', { | ||
expansionDeferred = '1' | ||
type = 'checkbox' | ||
} | ||
|
||
formalParameter 'ec_rolloutApprovers', { | ||
expansionDeferred = '1' | ||
type = 'assigneeList' | ||
} | ||
|
||
formalParameter 'ec_rolloutNotificationEnabled', defaultValue: '0', { | ||
expansionDeferred = '1' | ||
type = 'checkbox' | ||
} | ||
|
||
processStep 'BEE-43082', { | ||
description = 'System generated step to invoke microservice process' | ||
processStepType = 'process' | ||
submicroservice = 'BEE-43082' | ||
submicroserviceProcess = 'Deploy Microservice Process' | ||
useUtilityResource = '1' | ||
|
||
// Custom properties | ||
|
||
property 'ec_deploy', { | ||
|
||
// Custom properties | ||
ec_notifierStatus = '0' | ||
} | ||
} | ||
|
||
// Custom properties | ||
|
||
property 'ec_deploy', { | ||
|
||
// Custom properties | ||
ec_notifierStatus = '0' | ||
} | ||
} | ||
|
||
// Custom properties | ||
|
||
property 'ec_deploy', { | ||
|
||
// Custom properties | ||
ec_notifierStatus = '0' | ||
} | ||
} | ||
} |