Skip to content

Commit 37873b7

Browse files
Additional fixes.
1 parent ecb1897 commit 37873b7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/cloud-services/cloud-services-troubleshoot-location-not-found-for-role-size.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You might receive errors during these operations even before you reach the Azure
2727
2828
## Symptom
2929

30-
In Azure portal, navigate to your Cloud service (classic) and in the sidebar select **Operation log (classic)** to view the logs.
30+
In the [Azure portal](https://portal.azure.com/), navigate to your Cloud service (classic) and in the sidebar select **Operation log (classic)** to view the logs.
3131

3232
:::image type="content" source="./media/cloud-services-troubleshoot-location-not-found-for-role-size/cloud-services-troubleshoot-allocation-logs.png" alt-text="Screenshot shows the Operation log (classic) pane.":::
3333

@@ -41,9 +41,9 @@ When you inspect the logs of your Cloud service (classic), you'll see the follow
4141

4242
There's a capacity issue with the region or cluster that you're deploying to. The `LocationNotFoundForRoleSize` exception occurs when the resource SKU you've selected, the virtual machine size, isn't available for the region specified.
4343

44-
## Solution
44+
## Find SKUs in a region
4545

46-
In this scenario, you should select a different region or SKU to deploy your Cloud service (classic) to. Before you deploy or upgrade your Cloud service (classic), determine which SKUs are available in a region or availability zone. Follow the [Azure CLI](#list-skus-in-region-using-azure-cli), [PowerShell](#list-skus-in-region-using-powershell), or [REST API](#list-skus-in-region-using-rest-api) processes below.
46+
In this scenario, you should select a different region or SKU for your Cloud service (classic) deployment. Before you deploy or upgrade your Cloud service (classic), determine which SKUs are available in a region or availability zone. Follow the [Azure CLI](#list-skus-in-region-using-azure-cli), [PowerShell](#list-skus-in-region-using-powershell), or [REST API](#list-skus-in-region-using-rest-api) processes below.
4747

4848
### List SKUs in region using Azure CLI
4949

@@ -75,13 +75,13 @@ This command filters by location:
7575
Get-AzComputeResourceSku | where {$_.Locations -icontains "centralus"}
7676
```
7777

78-
Filter out the locations that contain size, `Standard_DS14_v2`:
78+
Find the locations that contain the size `Standard_DS14_v2`:
7979

8080
```azurepowershell
8181
Get-AzComputeResourceSku | where {$_.Locations.Contains("centralus") -and $_.ResourceType.Contains("virtualMachines") -and $_.Name.Contains("Standard_DS14_v2")}
8282
```
8383

84-
Filter out all the locations that contain size, `V3`:
84+
Find the locations that contain the size `V3`:
8585

8686
```azurepowershell
8787
Get-AzComputeResourceSku | where {$_.Locations.Contains("centralus") -and $_.ResourceType.Contains("virtualMachines") -and $_.Name.Contains("v3")} | fc

0 commit comments

Comments
 (0)