|
18 | 18 | - Additional information about change #1
|
19 | 19 | -->
|
20 | 20 | ## Upcoming Release
|
21 |
| -* Add parameters to `Add-AzServiceFabricNodeType` to facilitate easy alternate OS image creation for new node type. |
22 |
| - Parameters: `VMImagePublisher`, `VMImageOffer`, `VMImageSku`, `VMImageVersion` |
23 |
| - - Example usage: For a Ubuntu 16.04 cluster, add a new Ubuntu 18 node type: <br/> |
24 |
| - ```powershell |
25 |
| - $resouceGroup="Group1" |
26 |
| - $clusterName="Contoso01SFCluster" |
27 |
| - $nodeTypeName="nt2" |
28 |
| - $securePassword = ConvertTo-SecureString -String 'Password$123456' -AsPlainText -Force |
29 |
| -
|
30 |
| - Add-AzServiceFabricNodeType -ResourceGroupName $resouceGroup -ClusterName $clusterName -NodeType $nodeTypeName -Capacity 5 -VmUserName adminuser -VmPassword $securePassword -DurabilityLevel Silver -Verbose -VMImageSku 18.04-LTS |
31 |
| - ``` |
32 |
| -* Add parameter `IsPrimaryNodeType` to `Add-AzServiceFabricNodeType` to be able to create an additional primary node type, |
33 |
| - for the purpose of transitioning the primary node type to another one in the case of OS migration. |
| 21 | +* Added parameters `VMImagePublisher`, `VMImageOffer`, `VMImageSku`, `VMImageVersion` to `Add-AzServiceFabricNodeType` to facilitate easy alternate OS image creation for new node type. |
| 22 | +* Added parameter `IsPrimaryNodeType` to `Add-AzServiceFabricNodeType` to be able to create an additional primary node type, for the purpose of transitioning the primary node type to another one in the case of OS migration. |
34 | 23 | * `Add-AzServiceFabricNodeType` now correctly copies the LinuxDiagnostic extension. This was previously not working for Linux.
|
35 | 24 | * `Add-AzServiceFabricNodeType` now correctly copies the RDP/SSH load balancer inbound NAT port mapping to the new node type.
|
36 |
| -* Add template for `UbuntuServer1804` for creating Ubuntu 18.04 clusters using `New-AzServiceFabricCluster`. |
37 |
| -* `Remove-AzServiceFabricNodeType` was incorrectly blocking Bronze durability node types for removal, and this has been updated |
38 |
| - to only block when the Bronze durability level differs between the SF node type and VMSS setting. |
| 25 | +* Added template for `UbuntuServer1804` for creating Ubuntu 18.04 clusters using `New-AzServiceFabricCluster`. |
| 26 | +* `Remove-AzServiceFabricNodeType` was incorrectly blocking Bronze durability node types for removal, and this has been updated to only block when the Bronze durability level differs between the SF node type and VMSS setting. |
39 | 27 | * Added cmdlet `Update-AzServiceFabricVmImage` to update the delivered SF runtime package type. This must be changed when migrating from Ubuntu 16 to 18.
|
40 | 28 | * Added cmdlet `Update-AzServiceFabricNodeType` to update the properties of a cluster node type. For now this is solely used to update whether the node type is primary via bool parameter `-IsPrimaryNodeType $false`.
|
41 |
| -* `Update-AzServiceFabricReliability` is now able to update reliability level when the cluster has more than one primary node type. |
42 |
| - To do this, the name of the node type is supplied via the new -NodeType parameter. |
| 29 | +* `Update-AzServiceFabricReliability` is now able to update reliability level when the cluster has more than one primary node type. To do this, the name of the node type is supplied via the new -NodeType parameter. |
43 | 30 |
|
44 | 31 | ## Version 2.2.2
|
45 | 32 | * Fixed `Add-AzServiceFabricNodeType`. Added node type to service fabric cluster before creating virtual machine scale set.
|
|
0 commit comments