Skip to content

Commit 7e19cf2

Browse files
committed
edit pass: quickstarts-tenant-workload
1 parent e32a1cf commit 7e19cf2

File tree

4 files changed

+219
-270
lines changed

4 files changed

+219
-270
lines changed
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
2-
title: "Azure Operator Nexus: Creation of L2 isolation domain"
3-
description: Learn how create L2 isolation domain.
4-
author: jaredr80 #Required; your GitHub user alias, with correct capitalization.
5-
ms.author: jaredro #Required; microsoft alias of author; optional team alias.
6-
ms.service: azure #Required;
7-
ms.topic: include #Required; leave this attribute/value as-is.
8-
ms.date: 01/26/2023 #Required; mm/dd/yyyy format.
2+
title: "Azure Operator Nexus: Create an L2 isolation domain"
3+
description: Learn how to create an L2 isolation domain.
4+
author: jaredr80
5+
ms.author: jaredro
6+
ms.service: azure
7+
ms.topic: include
8+
ms.date: 01/26/2023
99
---
1010

11-
- Create a L2 isolation domain
11+
Create an L2 isolation domain:
1212

1313
```azurecli
1414
az nf l2domain create --resource-name "<YourL2IsolationDomainName>" \
@@ -20,7 +20,7 @@ ms.date: 01/26/2023 #Required; mm/dd/yyyy format.
2020
--mtu "<MtuOfThisNetwork>
2121
```
2222

23-
- Enable the L2 isolation domain after it's created
23+
Enable the L2 isolation domain that you created:
2424

2525
```azurecli
2626
az managednetworkfabric l2isolationdomain update-administrative-state \
@@ -30,4 +30,4 @@ ms.date: 01/26/2023 #Required; mm/dd/yyyy format.
3030
--state Enable
3131
```
3232

33-
- (Optional) Repeat, as needed, to create other L2 isolation domain(s)
33+
Repeat, as needed, to create other L2 isolation domains.
Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
2-
title: "Azure Operator Nexus: Creation of L3 isolation domain"
3-
description: Learn how create L3 isolation domain.
4-
author: jaredr80 #Required; your GitHub user alias, with correct capitalization.
5-
ms.author: jaredro #Required; microsoft alias of author; optional team alias.
6-
ms.service: azure #Required;
7-
ms.topic: include #Required; leave this attribute/value as-is.
8-
ms.date: 01/26/2023 #Required; mm/dd/yyyy format.
2+
title: "Azure Operator Nexus: Create an L3 isolation domain"
3+
description: Learn how to create an L3 isolation domain.
4+
author: jaredr80
5+
ms.author: jaredro
6+
ms.service: azure
7+
ms.topic: include
8+
ms.date: 01/26/2023
99
---
1010

11-
- Create a L3 isolation domain
11+
Create an L3 isolation domain:
1212

1313
```azurecli
1414
az nf l3domain create \
@@ -19,12 +19,10 @@ ms.date: 01/26/2023 #Required; mm/dd/yyyy format.
1919
--location "<ClusterAzureRegion>"
2020
```
2121

22-
- Create an `internalnetwork` resource for every VLAN/subnet that you need to include in your L3 isolation domain
23-
22+
Create an `internalnetwork` resource for every VLAN or subnet that you need to include in your L3 isolation domain.
2423

2524
> [!NOTE]
26-
> The following example uses the minimal configuration you will need to create a valid internal network.
27-
> The optional parameters are not shown.
25+
> The following example uses the minimal configuration for creating a valid internal network. It doesn't show optional parameters.
2826
2927
```azurecli
3028
az nf internalnetwork create \
@@ -41,8 +39,9 @@ ms.date: 01/26/2023 #Required; mm/dd/yyyy format.
4139
"ipv4NeighborAddress":[{"address": "<YourSubetInfoHere> "}]}'
4240
```
4341

44-
- (Optional) Repeat, as needed, for any other `internalnetwork(s)` that have to be added to this L3 isolation domain
45-
- Enable the L3 isolation-domain after all `internalnetworks` have been created
42+
Repeat, as needed, for any other `internalnetwork` resources that you have to add to this L3 isolation domain.
43+
44+
Enable the L3 isolation domain after you've created all `internalnetwork` resources.
4645

4746
```azurecli
4847
az nf l3domain update-admin-state \
@@ -52,4 +51,4 @@ ms.date: 01/26/2023 #Required; mm/dd/yyyy format.
5251
--state Enable
5352
```
5453

55-
- Repeat to create more L3 isolation domain(s).
54+
Repeat to create more L3 isolation domains.

0 commit comments

Comments
 (0)