You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AzureBasicLoadBalancerUpgrade/module/AzureBasicLoadBalancerUpgrade/AzureBasicLoadBalancerUpgrade.psd1
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
RootModule='AzureBasicLoadBalancerUpgrade'
13
13
14
14
# Version number of this module.
15
-
ModuleVersion='2.4.15'
15
+
ModuleVersion='2.4.20'
16
16
17
17
# Supported PSEditions
18
18
# CompatiblePSEditions = @()
@@ -21,13 +21,13 @@
21
21
GUID='d6a9de52-b84f-40c3-b4c8-81fab6e3ec99'
22
22
23
23
# Author of this module
24
-
Author='FastTrack for Azure'
24
+
Author='Matthew Bratschun'
25
25
26
26
# Company or vendor of this module
27
27
CompanyName='Microsoft'
28
28
29
29
# Copyright statement for this module
30
-
Copyright='(c) 2023 Microsoft. All rights reserved.'
30
+
Copyright='(c) 2025 Microsoft. All rights reserved.'
31
31
32
32
# Description of the functionality provided by this module
33
33
Description='This module will migrate a Basic SKU load balancer connected to a Virtual Machine Scaleset or Virtual Machines to a Standard SKU load balancer, preserving the existing configuration and functionality.'
@@ -107,7 +107,7 @@
107
107
# IconUri = ''
108
108
109
109
# ReleaseNotes of this module
110
-
ReleaseNotes='Fix bug when comparing backend pool membership on empty LBs.'
110
+
ReleaseNotes='Fix bug where load balancing rule without probe would cause migration to fail.'
Copy file name to clipboardExpand all lines: AzureBasicLoadBalancerUpgrade/module/AzureBasicLoadBalancerUpgrade/modules/LoadBalancingRulesMigration/LoadBalancingRulesMigration.psd1
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
#
2
-
# Module manifest for module 'LoadBalacingRulesMigration'
2
+
# Module manifest for module 'LoadBalancingRulesMigration'
3
3
#
4
4
# Generated by: Victor Santana
5
5
#
@@ -9,7 +9,7 @@
9
9
@{
10
10
11
11
# Script module or binary module file associated with this manifest.
$message="[LoadBalacingRulesMigration] An error occured when adding Load Balancing Rule '$($loadBalancingRule.Name)' to new Standard load balancer '$($StdLoadBalancer.Name)'. To recover, address the following error, delete the standard LB, and follow the process at https://aka.ms/basiclbupgradefailure to retry migration. Error: $_"
42
+
$message="[LoadBalancingRulesMigration] An error occurred when adding Load Balancing Rule '$($loadBalancingRule.Name)' to new Standard load balancer '$($StdLoadBalancer.Name)'. To recover, address the following error, delete the standard LB, and follow the process at https://aka.ms/basiclbupgradefailure to retry migration. Error: $_"
34
43
log "Error"$message-terminateOnError
35
44
}
36
45
}
37
-
log -Message "[LoadBalacingRulesMigration] Saving Standard Load Balancer $($StdLoadBalancer.Name)"
46
+
log -Message "[LoadBalancingRulesMigration] Saving Standard Load Balancer $($StdLoadBalancer.Name)"
$message="[LoadBalacingRulesMigration] An error occured when adding Load Balancing Rules configuration to new Standard load balancer '$($StdLoadBalancer.Name)'. To recover address the following error, https://aka.ms/basiclbupgradefailure. `nError message: $_"
53
+
$message="[LoadBalancingRulesMigration] An error occurred when adding Load Balancing Rules configuration to new Standard load balancer '$($StdLoadBalancer.Name)'. To recover address the following error, https://aka.ms/basiclbupgradefailure. `nError message: $_"
Copy file name to clipboardExpand all lines: AzureBasicLoadBalancerUpgrade/module/AzureBasicLoadBalancerUpgrade/modules/RemoveBasicLoadBalancer/RemoveBasicLoadBalancer.psm1
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ function RemoveBasicLoadBalancer {
58
58
Update-Vmss-Vmss $vmss
59
59
}
60
60
catch {
61
-
$message="[RemoveBasicLoadBalancerFromVmss] An error occured while updating VMSS '$($vmss.Name)' in resource group '$($vmss.ResourceGroupName)' to remove it from a backend pool on load balancer '$($BasicLoadBalancer.Name)'. Follow the steps at https://aka.ms/basiclbupgradefailure to retry the migration. `nError message: $_"
61
+
$message="[RemoveBasicLoadBalancerFromVmss] An error occurred while updating VMSS '$($vmss.Name)' in resource group '$($vmss.ResourceGroupName)' to remove it from a backend pool on load balancer '$($BasicLoadBalancer.Name)'. Follow the steps at https://aka.ms/basiclbupgradefailure to retry the migration. `nError message: $_"
62
62
log 'Error'$message-terminateOnError
63
63
}
64
64
@@ -72,7 +72,7 @@ function RemoveBasicLoadBalancer {
$message="[RemoveBasicLoadBalancer] A failure occured when attempting to delete the basic load balancer '$($BasicLoadBalancer.Name)'. The script cannot continue as the front end addresses will not be available to reassign to the new Standard load balancer if the Basic LB has not been removed. To recover address the following error, then follow the steps at https://aka.ms/basiclbupgradefailure to retry the migration. `nError message: $_"
75
+
$message="[RemoveBasicLoadBalancer] A failure occurred when attempting to delete the basic load balancer '$($BasicLoadBalancer.Name)'. The script cannot continue as the front end addresses will not be available to reassign to the new Standard load balancer if the Basic LB has not been removed. To recover address the following error, then follow the steps at https://aka.ms/basiclbupgradefailure to retry the migration. `nError message: $_"
76
76
log 'Error'$message-terminateOnError
77
77
}
78
78
log -Message "[RemoveBasicLoadBalancer] Removal of Basic Loadbalancer $($BasicLoadBalancer.Name) Completed"
Copy file name to clipboardExpand all lines: AzureBasicLoadBalancerUpgrade/module/AzureBasicLoadBalancerUpgrade/modules/ScenariosMigration/ScenariosMigration.psm1
0 commit comments