Skip to content

Commit ebddf12

Browse files
ncolemicheleRP
andauthored
DOC-1507. Add Azure CLI and Subscription (#356)
* DOC-1507. Add Azure CLI and Subscription * copyedit and coderabbit suggestions * add `az login` step * remove coderabbit suggestions --------- Co-authored-by: micheleRP <[email protected]>
1 parent b0ac8e9 commit ebddf12

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

modules/get-started/pages/cluster-types/byoc/azure/create-byoc-cluster-azure.adoc

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,20 @@ NOTE: With standard BYOC clusters, Redpanda manages security policies and resour
1212

1313
Before 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

1731
Confirm 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
----
93107
ResourceType 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
----
101115
ResourceType 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

106120
If 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

Comments
 (0)