Skip to content

Commit 98ebb28

Browse files
authored
Apply PR feedback
1 parent 14b8e84 commit 98ebb28

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

articles/aks/learn/quick-windows-container-deploy-cli.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,22 @@ This article assumes a basic understanding of Kubernetes concepts. For more info
2727
- If you have multiple Azure subscriptions, select the appropriate subscription ID in which the resources should be billed using the
2828
[az account](/cli/azure/account) command.
2929

30-
- The Azure subscription you're using must be registered to use namespace `Microsoft.OperationsManagement`. To check this, follow the instructions in the "Solution" section of [Resolve errors for resource provider registration](https://learn.microsoft.com/azure/azure-resource-manager/troubleshooting/error-register-resource-provider?tabs=azure-portal#solution).
30+
- Verify _Microsoft.OperationsManagement_ and _Microsoft.OperationalInsights_ providers are registered on your subscription. These are Azure resource providers required to support Container insights. To check the registration status, run the following commands:
31+
32+
```sh
33+
az provider show -n Microsoft.OperationsManagement -o table
34+
az provider show -n Microsoft.OperationalInsights -o table
35+
```
36+
37+
If they are not registered, register _Microsoft.OperationsManagement_ and _Microsoft.OperationalInsights_ using the following commands:
38+
39+
```sh
40+
az provider register --namespace Microsoft.OperationsManagement
41+
az provider register --namespace Microsoft.OperationalInsights
42+
```
43+
44+
> [!NOTE]
45+
> Run the commands with administrative privileges if you plan to run the commands in this quickstart locally instead of in Azure Cloud Shell.
3146
3247
### Limitations
3348

@@ -410,5 +425,6 @@ To learn more about AKS, and walk through a complete code to deployment example,
410425
[aks-faq]: faq.md
411426
[az-extension-add]: /cli/azure/extension#az-extension-add
412427
[az-extension-update]: /cli/azure/extension#az-extension-update
428+
[azure-monitor-containers]: ../../azure-monitor/containers/container-insights-overview.md
413429
[windows-server-password]: /windows/security/threat-protection/security-policy-settings/password-must-meet-complexity-requirements#reference
414430
[win-faq-change-admin-creds]: ../windows-faq.md#how-do-i-change-the-administrator-password-for-windows-server-nodes-on-my-cluster

0 commit comments

Comments
 (0)