@@ -18,9 +18,9 @@ In this tutorial, you'll deploy an open-source Apache Cassandra cluster on Azure
18182 . Install ` kubectl ` . You can use the ` az aks install-cli ` command to install it if you are using Azure Cloud Shell.
1919
2020
21- ## Step 1: Create an AKS Cluster
21+ ## Step 1: Create a Resource Group
2222
23- Create an AKS cluster with a specified resource group .
23+ Create an Azure resource group to contain the AKS cluster and other resources .
2424
2525``` bash
2626export RANDOM_SUFFIX=" $( openssl rand -hex 3) "
@@ -51,6 +51,8 @@ Results:
5151}
5252```
5353
54+ ## Step 2: Create an AKS Cluster
55+
5456Now, create an AKS cluster in the resource group.
5557
5658``` bash
@@ -65,7 +67,7 @@ az aks create \
6567 --generate-ssh-keys
6668```
6769
68- ## Step 2 : Connect to the AKS Cluster
70+ ## Step 3 : Connect to the AKS Cluster
6971
7072Retrieve the AKS cluster credentials and configure ` kubectl ` .
7173
@@ -92,7 +94,7 @@ aks-nodepool1-xxxxx-vmss000001 Ready agent 3m52s v1.26.0
9294aks-nodepool1-xxxxx-vmss000002 Ready agent 3m48s v1.26.0
9395```
9496
95- ## Step 3 : Deploy the Cassandra Cluster
97+ ## Step 4 : Deploy the Cassandra Cluster
9698
9799Create a Kubernetes manifest file in Cloud Shell to define the Cassandra deployment. Use a name like ` cassandra-deployment.yaml ` .
98100
@@ -138,7 +140,7 @@ Results:
138140statefulset.apps/cassandra created
139141```
140142
141- ## Step 4 : Create a Headless Service for Cassandra
143+ ## Step 5 : Create a Headless Service for Cassandra
142144
143145Create a Kubernetes manifest file in Cloud Shell to define the Cassandra headless service. Use a name like ` cassandra-service.yaml ` .
144146
163165kubectl apply -f cassandra-service.yaml
164166```
165167
166- ## Step 4 : Verify Cassandra Deployment
168+ ## Step 6 : Verify Cassandra Deployment
167169
168170Check the status of the Cassandra pods to ensure deployment is successful.
169171
@@ -213,7 +215,7 @@ NAME READY AGE
213215cassandra 3/3 3m
214216```
215217
216- ## Step 5 : Access Cassandra Cluster
218+ ## Step 7 : Access Cassandra Cluster
217219
218220Create a temporary Pod to access the Cassandra cluster using ` cqlsh ` , the Cassandra query tool.
219221
0 commit comments