Skip to content

Commit 4675113

Browse files
authored
Merge pull request Azure#6558 from Azure/jsturtevant-patch-1-1
Update command to all for pfxfolder and deployment of default reliability tier
2 parents 6971555 + 06eed52 commit 4675113

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/ResourceManager/ServiceFabric/Commands.ServiceFabric/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Current Release
21+
* Update example for `New-AzureRmServiceFabricCluster`
2122

2223
## Version 0.3.7
2324
* Fixed formatting of OutputType in help files

src/ResourceManager/ServiceFabric/Commands.ServiceFabric/help/New-AzureRmServiceFabricCluster.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ $pass="Password#1234" | ConvertTo-SecureString -AsPlainText -Force
6060
$RGname="test01"
6161
$clusterloc="SouthCentralUS"
6262
$subname="{0}.{1}.cloudapp.azure.com" -f $RGname, $clusterloc
63-
$pfxfolder="~\Documents"
63+
$pfxfolder="c:\certs"
6464
6565
Write-Output "Create cluster in '$clusterloc' with cert subject name '$subname' and cert output path '$pfxfolder'"
6666
67-
New-AzureRmServiceFabricCluster -ResourceGroupName $RGname -Location $clusterloc -ClusterSize 3 -VmPassword $pass -CertificateSubjectName $subname -CertificateOutputFolder $pfxfolder -CertificatePassword $pass -OS WindowsServer2016Datacenter
67+
New-AzureRmServiceFabricCluster -ResourceGroupName $RGname -Location $clusterloc -ClusterSize 5 -VmPassword $pass -CertificateSubjectName $subname -CertificateOutputFolder $pfxfolder -CertificatePassword $pass -OS WindowsServer2016Datacenter
6868
```
6969

7070
This command specifies only the cluster size, the cert subject name, and the OS to deploy a cluster.

0 commit comments

Comments
 (0)