@@ -12,6 +12,20 @@ NOTE: With standard BYOC clusters, Redpanda manages security policies and resour
1212
1313Before you deploy a BYOC cluster on Azure, check all prerequisites to ensure that your Azure subscription meets requirements.
1414
15+ === Configure Azure CLI
16+
17+ * https://learn.microsoft.com/en-us/cli/azure/install-azure-cli[Install the Azure CLI^].
18+ * https://learn.microsoft.com/en-us/cli/azure/authenticate-azure-cli[Sign in^] with the Azure CLI:
19+ +
20+ ```
21+ az login
22+ ```
23+ * Set the desired subscription for the Azure CLI:
24+ +
25+ ```
26+ az account set --subscription <subscription-name>
27+ ```
28+
1529=== Verify rpk version
1630
1731Confirm you have a minimum version of Redpanda `rpk` v24.1. See xref:manage:rpk/rpk-install.adoc[].
@@ -84,23 +98,23 @@ Ensure your subscription has access to the required VM sizes in the region where
8498[source,bash]
8599----
86100# Replace eastus2 with your target region
87- az vm list-skus -l eastus2 --zone --size Standard_D2ads_v5 --output table
101+ az vm list-skus -l eastus2 --zone --size Standard_D2d_v5 --output table
88102----
89103
90104.Example output (no restrictions: good)
91105[%nowrap,bash]
92106----
93107ResourceType Locations Name Zones Restrictions
94108--------------- ----------- --------------- ------- ------------
95- virtualMachines eastus2 Standard_D2ads_v5 1,2,3 None
109+ virtualMachines eastus2 Standard_D2d_v5 1,2,3 None
96110----
97111
98112.Example output (with restrictions: needs attention)
99113[%nowrap,bash]
100114----
101115ResourceType Locations Name Zones Restrictions
102116--------------- ----------- --------------- ------- ------------
103- virtualMachines eastus2 Standard_D2ads_v5 1,2,3 NotAvailableForSubscription
117+ virtualMachines eastus2 Standard_D2d_v5 1,2,3 NotAvailableForSubscription
104118----
105119
106120If you see restrictions, https://learn.microsoft.com/en-us/troubleshoot/azure/general/region-access-request-process[open a Microsoft support request^] to remove them.
0 commit comments