Skip to content

Commit 838a6a6

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 838a6a6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

functions/pe_db_names.pp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,18 @@ 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-infra-assistant',
21+
]
22+
}
23+
1624
# The patching service was added in 2025.0.0
1725
$pe_2025_or_later: {
1826
$original_db_names + [

0 commit comments

Comments
 (0)