Skip to content

Commit e89b41e

Browse files
authored
Merge pull request #233386 from ShawnJackson/quickstarts-tenant-workload
[AQ] edit pass: Two workload deployment how-to articles
2 parents 34890f2 + 9f74dd0 commit e89b41e

File tree

5 files changed

+278
-340
lines changed

5 files changed

+278
-340
lines changed

articles/operator-nexus/howto-hybrid-aks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This document shows how to manage an AKS-Hybrid cluster that you use for CNF wor
1717

1818
You need:
1919

20-
1. You should have created an [AKS-Hybrid Cluster](./quickstarts-tenant-workload-deployment.md#section-k-how-to-create-aks-hybrid-cluster-for-deploying-cnf-workloads)
20+
1. You should have created an [AKS-Hybrid Cluster](./quickstarts-tenant-workload-deployment.md#create-aks-hybrid-clusters-for-cnf-workloads)
2121
2. <`YourAKS-HybridClusterName`>: the name of your previously created AKS-Hybrid cluster
2222
3. <`YourSubscription`>: your subscription name or ID where the AKS-Hybrid cluster was created
2323
4. <`YourResourceGroupName`>: the name of the Resource group where the AKS-Hybrid cluster was created
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-operator-nexus #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-operator-nexus
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-operator-nexus #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-operator-nexus
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)