Skip to content

Commit 1e3375a

Browse files
committed
(Hopefully) last batch of cleanup based on preview
1 parent a1d77cf commit 1e3375a

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

articles/chaos-studio/chaos-studio-private-networking.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,23 @@ To configure VNet injection, use the following steps.
2626
> [!NOTE]
2727
> These instructions assume you already have a private AKS cluster. Learn more about private clusters here: [Create a private Azure Kubernetes Service cluster](../aks/private-clusters.md)
2828
29-
### [Azure portal](#tab/portal)
29+
### [Azure portal](#tab/azure-portal)
3030

31-
1. Make sure the `Microsoft.ContainerInstance` and `Microsoft.Relay` resource providers are registered with your subscription (if applicable) by using the [Register resource provider](../azure-resource-manager/management/resource-providers-and-types.md) instructions.
31+
1. Within the Azure portal, navigate to **Subscriptions**, then **Resource providers** within your subscription.
32+
1. Register the `Microsoft.ContainerInstance` and `Microsoft.Relay` resource providers, if they aren't already registered, by selecting the provider and then the **Register** button. Additionally, re-register the `Microsoft.ChaosStudio` resource provider.
3233
![Register a resource provider](images/vnet-register-resource-provider.png)
33-
1. Navigate to Azure Chaos Studio and select Targets. Find your desired AKS cluster and select "Enable targets", then "Enable service-direct targets".
34+
1. Navigate to Azure Chaos Studio and select **Targets**. Find your desired AKS cluster and select **Enable targets**, then **Enable service-direct targets**.
3435
![Enable targets in Chaos Studio](images/vnet-enable-targets.png)
3536
1. Select the cluster's Virtual Network. If the VNet already includes Subnets named `ChaosStudioContainerSubnet` and `ChaosStudioRelaySubnet`, select them. If they don't already exist, they will be automatically created for you.
3637
![Select the VNet and Subnets](images/vnet-select-subnets.png)
37-
1. Select "Review + Enable" and "Enable".
38+
1. Select **Review + Enable** and **Enable**.
3839
![Review the target enablement](images/vnet-review.png)
3940

4041
Now your private AKS cluster can be used with Chaos Studio! Use the following instructions to learn how to install Chaos Mesh and run the experiment: [Create a chaos experiment that uses a Chaos Mesh fault with the Azure portal](chaos-studio-tutorial-aks-portal.md).
4142

42-
### [Azure CLI](#tab/cli)
43+
### [Azure CLI](#tab/azure-cli)
4344

44-
1. Register the `Microsoft.ContainerInstance` and `Microsoft.Relay` resource providers with your subscription. If they're both already registered, you can skip this step.
45+
1. Register the `Microsoft.ContainerInstance` and `Microsoft.Relay` resource providers with your subscription by running the following commands. If they're both already registered, you can skip this step. For more detail, see the [Register resource provider](../azure-resource-manager/management/resource-providers-and-types.md) instructions.
4546

4647
```azurecli
4748
az provider register --namespace 'Microsoft.ContainerInstance' --wait
@@ -51,7 +52,7 @@ Now your private AKS cluster can be used with Chaos Studio! Use the following in
5152
az provider register --namespace 'Microsoft.Relay' --wait
5253
```
5354
54-
Verify the registration by running the following command:
55+
Verify the registration by running the following commands:
5556
5657
```azurecli
5758
az provider show --namespace 'Microsoft.ContainerInstance' | grep registrationState
@@ -85,7 +86,7 @@ Now your private AKS cluster can be used with Chaos Studio! Use the following in
8586
"registrationState": "Registered",
8687
```
8788
88-
1. Create two subnets in the VNet you want to inject into:
89+
1. Create two subnets in the VNet you want to inject into (such as the relevant AKS VNet):
8990
9091
- `ChaosStudioContainerSubnet`
9192
- Delegate the subnet to `Microsoft.ContainerInstance/containerGroups` service.
@@ -130,7 +131,7 @@ Now your private AKS cluster can be used with Chaos Studio! Use the following in
130131
---
131132
132133
## Limitations
133-
* VNet injection is currently only possible in subscriptions/regions where Azure Container Instances and Azure Relay are available. They're deployed to target regions.
134+
* VNet injection is currently only possible in subscriptions/regions where Azure Container Instances and Azure Relay are available.
134135
* When you create a Target resource that you'll enable with VNet injection, you need `Microsoft.Network/virtualNetworks/subnets/write` access to the virtual network. For example, if the AKS cluster is deployed to VNet_A, then you must have permissions to create subnets in VNet_A in order to enable VNet injection for the AKS cluster. You have to specify a subnet (in VNet_A) that the container will be deployed to.
135136
136137
<!--

0 commit comments

Comments
 (0)