You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/get-started/pages/cluster-types/byoc/azure/create-byoc-cluster-azure.adoc
+25-8Lines changed: 25 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,34 +35,51 @@ In the https://login.microsoftonline.com/[Azure Portal^], confirm that the dedic
35
35
36
36
* **Role**: The Azure user must have the _Owner_ role in the subscription.
37
37
38
-
* **Resources**: The subscription must be registered for the following resource providers. See the https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/resource-providers-and-types[Microsoft documentation^].
38
+
* **Resources**: The subscription must be registered for the following resource providers (AKS + common dependencies). See the https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/resource-providers-and-types[Microsoft documentation^].
39
39
+
40
40
--
41
41
** Microsoft.Compute
42
42
** Microsoft.ManagedIdentity
43
43
** Microsoft.Storage
44
44
** Microsoft.KeyVault
45
45
** Microsoft.Network
46
+
** Microsoft.ContainerService
46
47
--
47
48
+
48
-
To check if a resource provider is registered, run the following command using the Azure CLI or in the Azure Cloud Shell. For example, to check for Microsoft.Compute, run:
49
+
To check if a resource provider is registered, run the following command using the Azure CLI or in the Azure Cloud Shell:
49
50
+
50
-
```
51
-
az provider show -n Microsoft.Compute
52
51
```
53
-
+
54
-
If it is not registered, run:
52
+
az provider show -n Microsoft.Compute --query registrationState -o tsv
53
+
az provider show -n Microsoft.ManagedIdentity --query registrationState -o tsv
54
+
az provider show -n Microsoft.Storage --query registrationState -o tsv
55
+
az provider show -n Microsoft.KeyVault --query registrationState -o tsv
56
+
az provider show -n Microsoft.Network --query registrationState -o tsv
57
+
az provider show -n Microsoft.ContainerService --query registrationState -o tsv
58
+
```
59
+
+
60
+
If a resource provider is not registered, run:
55
61
+
56
62
```
57
-
az provider register --namespace 'Microsoft.Compute'
63
+
az provider register --namespace Microsoft.Compute
64
+
az provider register --namespace Microsoft.ManagedIdentity
65
+
az provider register --namespace Microsoft.Storage
66
+
az provider register --namespace Microsoft.KeyVault
67
+
az provider register --namespace Microsoft.Network
68
+
az provider register --namespace Microsoft.ContainerService
58
69
```
59
70
60
71
* **Feature**: The subscription must be registered for Microsoft.Compute/EncryptionAtHost. See the https://learn.microsoft.com/en-us/azure/virtual-machines/linux/disks-enable-host-based-encryption-cli#prerequisites[Microsoft documentation^].
61
72
+
62
73
To register it, run:
63
74
+
64
75
```
65
-
az feature register --namespace Microsoft.Compute --name EncryptionAtHost
76
+
az feature register --namespace Microsoft.Compute --name EncryptionAtHost
77
+
78
+
# (optional) Wait and verify it shows as Registered
79
+
az feature show --namespace Microsoft.Compute --name EncryptionAtHost --query properties.state -o tsv
80
+
81
+
# Refresh the provider after enabling a feature
82
+
az provider register --namespace Microsoft.Compute
66
83
```
67
84
68
85
* **Monitoring**: The subscription must have Azure Network Watcher enabled in the NetworkWatcherRG resource group and the region where you will use Redpanda. Network Watcher lets you monitor and diagnose conditions at a network level. See the https://learn.microsoft.com/en-us/azure/network-watcher/network-watcher-create?tabs=portaly[Microsoft documentation^].
0 commit comments