Skip to content

Commit 68db0ff

Browse files
committed
Add screenshots
1 parent 58fb401 commit 68db0ff

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed
110 KB
Loading
233 KB
Loading

articles/service-fabric/quickstart-cluster-template.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ Service Fabric uses X.509 certificates to [secure a cluster](./service-fabric-cl
5353

5454
```powershell
5555
# Designate unique (within cloudapp.azure.com) names for your resources
56-
5756
$resourceGroupName = "SFQuickstartRG"
5857
$keyVaultName = "SFQuickstartKV"
5958
@@ -70,16 +69,16 @@ New-AzKeyVault -VaultName $KeyVaultName -ResourceGroupName $resourceGroupName -L
7069
The script will prompt you for the following (be sure to modify *CertDNSName* and *KeyVaultName* from the example values below):
7170

7271
* **Password:** Password!1
73-
* **CertDNSName:** sfquickstart.southcentralus.cloudapp.azure.com
74-
* **KeyVaultName:** SFQuickstartKV
72+
* **CertDNSName:** *sfquickstart*.southcentralus.cloudapp.azure.com
73+
* **KeyVaultName:** *SFQuickstartKV*
7574
* **KeyVaultSecretName:** clustercert
7675

7776
Upon completion, the script will provide the parameter values needed for template deployment. Be sure to store these in the following variables, as they will be needed to deploy your cluster template:
7877

7978
```powershell
80-
$certThumbprint = "<Certificate Thumbprint>"
81-
$certUrlValue = "<Certificate URL>"
8279
$sourceVaultId = "<Source Vault Resource Id>"
80+
$certUrlValue = "<Certificate URL>"
81+
$certThumbprint = "<Certificate Thumbprint>"
8382
```
8483

8584
## Create a Service Fabric cluster
@@ -160,13 +159,17 @@ New-AzResourceGroupDeployment `
160159

161160
Once the deployment completes, find the `managementEndpoint` value in the output and open the address in a web browser to view your cluster in [Service Fabric Explorer](./service-fabric-visualizing-your-cluster.md).
162161

162+
![Service Fabric Explorer showing new cluster](./media/quickstart-cluster-template/service-fabric-explorer.png)
163+
163164
You can also find the Service Fabric Explorer endpoint from your Service Explorer resource blade in Azure portal.
164165

166+
![Service Fabric resource blade showing Service Fabric Explorer endpoint](./media/quickstart-cluster-template/service-fabric-explorer-endpoint-azure-portal.png)
167+
165168
## Clean up resources
166169

167170
When no longer needed, delete the resource group, which deletes the resources in the resource group.
168171

169-
```azurepowershell-interactive
172+
```powershell
170173
$resourceGroupName = Read-Host -Prompt "Enter the Resource Group name"
171174
Remove-AzResourceGroup -Name $resourceGroupName
172175
Write-Host "Press [ENTER] to continue..."

0 commit comments

Comments
 (0)