Skip to content

Commit 7493ee0

Browse files
authored
Merge pull request #104318 from EliiseS/patch-4
Add missing requirements to windows container deploy quick start
2 parents 9032ce8 + 98ebb28 commit 7493ee0

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,23 @@ 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+
- 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.
46+
3047
### Limitations
3148

3249
The following limitations apply when you create and manage AKS clusters that support multiple node pools:
@@ -408,5 +425,6 @@ To learn more about AKS, and walk through a complete code to deployment example,
408425
[aks-faq]: faq.md
409426
[az-extension-add]: /cli/azure/extension#az-extension-add
410427
[az-extension-update]: /cli/azure/extension#az-extension-update
428+
[azure-monitor-containers]: ../../azure-monitor/containers/container-insights-overview.md
411429
[windows-server-password]: /windows/security/threat-protection/security-policy-settings/password-must-meet-complexity-requirements#reference
412430
[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)