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: src/ServiceFabric/ServiceFabric/ChangeLog.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@
18
18
- Additional information about change #1
19
19
-->
20
20
## Upcoming Release
21
+
* Removed `ReimageByName`, `ReimageById`, and `ReimageByObj` parameter sets from `Set-AzServiceFabricManagedNodeType`.
21
22
22
23
## Version 3.8.0
23
24
* Changed from `Basic` to `Standard` SKUs for loadbalancers and public IP addresses for `New-AzServiceFabricCluster` and `Add-AzServiceFabricNodeType` as `Basic` SKUs are being deprecated.
HelpMessage="Using this flag will force the reimage even if service fabric is unable to disable the nodes. Use with caution as this might cause data loss if stateful workloads are running on the node.")]
HelpMessage="Using this flag will force the reimage even if service fabric is unable to disable the nodes. Use with caution as this might cause data loss if stateful workloads are running on the node.")]
HelpMessage="Using this flag will force the reimage even if service fabric is unable to disable the nodes. Use with caution as this might cause data loss if stateful workloads are running on the node.")]
[Parameter(Mandatory=false,ParameterSetName=WithParamsByName,HelpMessage="The number of nodes in the node type.")]
@@ -150,7 +106,6 @@ public class SetAzServiceFabricManagedNodeType : ServiceFabricManagedCmdletBase
150
106
151
107
#endregion
152
108
153
-
154
109
#endregion
155
110
156
111
publicoverridevoidExecuteCmdlet()
@@ -161,28 +116,6 @@ public override void ExecuteCmdlet()
161
116
NodeTypeupdatedNodeTypeParams=null;
162
117
switch(ParameterSetName)
163
118
{
164
-
caseReimageByName:
165
-
caseReimageById:
166
-
caseReimageByObj:
167
-
if(ShouldProcess(target:this.Name,action:string.Format("Reimage node(s) {0}, from node type {1} on cluster {2}",string.Join(", ",this.NodeName),this.Name,this.ClusterName)))
Reimage nodes from the node type. On reimage operation the service fabric nodes will be disabled before reimaging the vms and enabled them back again once they come back. If this is done on primary node types it might take a while as it might not reimage all the nodes at the same time. Use -ForceReimage to force the operation even if service fabric is unable to disable the nodes but use with caution as this might cause data loss if stateful workloads are running on the node.
Copy file name to clipboardExpand all lines: src/ServiceFabric/ServiceFabric/help/Invoke-AzServiceFabricReimageManagedNodeType.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
8
8
# Invoke-AzServiceFabricReimageManagedNodeType
9
9
10
10
## SYNOPSIS
11
-
Reimage nodes from the node type.
11
+
Reimage nodes from the node type. On reimage operation the service fabric nodes will be disabled before reimaging the vms and enabled them back again once they come back. If this is done on primary node types it might take a while as it might not reimage all the nodes at the same time. Use -ForceReimage to force the operation even if service fabric is unable to disable the nodes but use with caution as this might cause data loss if stateful workloads are running on the node.
Reimage nodes from the node type. The nodes will be disabled, reimaged, then renabled.
22
+
Reimage nodes from the node type. The nodes will be disabled, reimaged, then renabled. On reimage operation the service fabric nodes will be disabled before reimaging the vms and enabled them back again once they come back. If this is done on primary node types it might take a while as it might not reimage all the nodes at the same time. Use -ForceReimage to force the operation even if service fabric is unable to disable the nodes but use with caution as this might cause data loss if stateful workloads are running on the node.
Sets node type resource properties or run reimage actions on specific nodes of the node type with -Reimage parameter. On reimage operation the service fabric nodes will be disabled before reimaging the vms and enabled them back again once they come back. If this is done on primary node types it might take a while as it might not reimage all the nodes at the same time. Use -ForceReimage to force the operation even if service fabric is unable to disable the nodes but use with caution as this might cause data loss if stateful workloads are running on the node.
40
+
Sets node type resource properties.
62
41
63
42
## EXAMPLES
64
43
@@ -87,16 +66,6 @@ Update placement properties of the node type. This will overwrite older placemen
Placement tags applied to nodes in the node type as key/value pairs, which can be used to indicate where certain services (workload) should run. Updating this will override the current values.
0 commit comments