Skip to content

Commit 5273d90

Browse files
committed
(PE-40508) Add infra-assistant to add_database plan
Adding the Infra Assistant DB following just as was done with PE Patching in #531.
1 parent dd7f25a commit 5273d90

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

functions/pe_db_names.pp

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

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

1516
case $pe_ver {
17+
# The infra-assistant was added in 2025.3.0
18+
$pe_2025_3_or_later: {
19+
$original_db_names + [
20+
'pe-hac',
21+
'pe-patching',
22+
'pe-infra-assistant',
23+
]
24+
}
25+
1626
# The patching service was added in 2025.0.0
1727
$pe_2025_or_later: {
1828
$original_db_names + [

0 commit comments

Comments
 (0)