Skip to content

Commit c24db0e

Browse files
authored
Merge pull request #104862 from asudbring/lbqspatch
Added note about basic and standard
2 parents ea755ff + 15eb4d5 commit c24db0e

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

articles/load-balancer/quickstart-create-standard-load-balancer-powershell.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ $publicIp = New-AzPublicIpAddress `
6363
-zone 1
6464
```
6565

66-
Use ```-SKU Basic``` to create a Basic Public IP. Microsoft recommends using Standard for production workloads.
66+
Use ```-SKU Basic``` to create a Basic Public IP. Basic Public IPs are not compatible with **Standard** load balancer. Microsoft recommends using **Standard** for production workloads.
67+
68+
> [!IMPORTANT]
69+
> The rest of this quickstart assumes that **Standard** SKU is chosen during the SKU selection process above.
6770
6871
## Create Load Balancer
6972

@@ -157,6 +160,9 @@ $lb = New-AzLoadBalancer `
157160

158161
Use ```-SKU Basic``` to create a Basic Load Balancer. Microsoft recommends using Standard for production workloads.
159162

163+
> [!IMPORTANT]
164+
> The rest of this quickstart assumes that **Standard** SKU is chosen during the SKU selection process above.
165+
160166
## Create network resources
161167
Before you deploy some VMs and can test your balancer, you must create supporting network resources - virtual network and virtual NICs.
162168

articles/load-balancer/quickstart-load-balancer-standard-public-cli.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ To create a zonal Public IP address in zone 1 use:
5252
az network public-ip create --resource-group myResourceGroupSLB --name myPublicIP --sku standard --zone 1
5353
```
5454

55-
Use ```--sku basic``` to create a Basic Public IP. Basic does not support Availability zones. Microsoft recommends Standard SKU for production workloads.
55+
Use ```-SKU Basic``` to create a Basic Public IP. Basic Public IPs are not compatible with **Standard** load balancer. Microsoft recommends using **Standard** for production workloads.
56+
57+
> [!IMPORTANT]
58+
> The rest of this quickstart assumes that **Standard** SKU is chosen during the SKU selection process above.
5659
5760
## Create Azure Load balancer
5861

@@ -76,6 +79,9 @@ Create a public Azure Load Balancer with [az network lb create](https://docs.mic
7679
--backend-pool-name myBackEndPool
7780
```
7881

82+
> [!IMPORTANT]
83+
> The rest of this quickstart assumes that **Standard** SKU is chosen during the SKU selection process above.
84+
7985
### Create the health probe
8086

8187
A health probe checks all virtual machine instances to make sure they can send network traffic. The virtual machine instance with failed probe checks is removed from the load balancer until it goes back online and a probe check determines that it's healthy. Create a health probe with [az network lb probe create](https://docs.microsoft.com/cli/azure/network/lb/probe?view=azure-cli-latest) to monitor the health of the virtual machines.

articles/load-balancer/quickstart-load-balancer-standard-public-portal.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,15 @@ In this section, you create a Load Balancer that helps load balance virtual mach
4141
| Name | *myLoadBalancer* |
4242
| Region | Select **West Europe**. |
4343
| Type | Select **Public**. |
44-
| SKU | Select **Standard** or **Basic**. Microsoft recommends Standard for production workloads. |
44+
| SKU | Select **Standard** or **Basic**. Microsoft recommends Standard for production workloads. |
4545
| Public IP address | Select **Create new**. If you have an existing Public IP you would like to use, select **Use existing** |
46-
| Public IP address name | Type *myPublicIP* in the text box. |
46+
| Public IP address name | Type *myPublicIP* in the text box. Use ```-SKU Basic``` to create a Basic Public IP. Basic Public IPs are not compatible with **Standard** load balancer. Microsoft recommends using **Standard** for production workloads.|
4747
| Availability zone | Type *Zone-redundant* to create a resilient Load Balancer. To create a zonal Load Balancer, select a specific zone from 1, 2, or 3 |
4848

49+
> [!IMPORTANT]
50+
> The rest of this quickstart assumes that **Standard** SKU is chosen during the SKU selection process above.
51+
52+
4953
3. In the **Review + create** tab, select **Create**.
5054

5155
![Create a Standard Load Balancer](./media/quickstart-load-balancer-standard-public-portal/create-standard-load-balancer.png)

0 commit comments

Comments
 (0)