Skip to content

Commit 6b7273d

Browse files
authored
(PE-41731) Add pe-workflow database (#605)
Adds the pe-workflow DB targeted for PE >=2025.6.0
1 parent be3a15d commit 6b7273d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

functions/pe_db_names.pp

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,22 @@ function peadm::pe_db_names (
99
'pe-rbac',
1010
]
1111

12+
$pe_2025_6_or_later = SemVerRange('>=2025.6.0')
1213
$pe_2025_3_or_later = SemVerRange('>= 2025.3.0')
1314
$pe_2025_or_later = SemVerRange('>= 2025.0.0')
1415
$pe_2023_8_or_later = SemVerRange('>= 2023.8.0')
1516

1617
case $pe_ver {
18+
# The workflow service was added in 2025.6.0
19+
$pe_2025_6_or_later: {
20+
$original_db_names + [
21+
'pe-hac',
22+
'pe-patching',
23+
'pe-infra-assistant',
24+
'pe-workflow',
25+
]
26+
}
27+
1728
# The infra-assistant was added in 2025.3.0
1829
$pe_2025_3_or_later: {
1930
$original_db_names + [

0 commit comments

Comments
 (0)