Skip to content

Commit 2a7df29

Browse files
author
naman-msft
committed
updated docs;
1 parent 3e5c676 commit 2a7df29

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

scenarios/DeployCassandraOnAKS/deploy-cassandra-on-aks.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ In this tutorial, you'll deploy an open-source Apache Cassandra cluster on Azure
1818
2. 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
2626
export RANDOM_SUFFIX="$(openssl rand -hex 3)"
@@ -51,6 +51,8 @@ Results:
5151
}
5252
```
5353

54+
## Step 2: Create an AKS Cluster
55+
5456
Now, 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

7072
Retrieve the AKS cluster credentials and configure `kubectl`.
7173

@@ -92,7 +94,7 @@ aks-nodepool1-xxxxx-vmss000001 Ready agent 3m52s v1.26.0
9294
aks-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

9799
Create 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:
138140
statefulset.apps/cassandra created
139141
```
140142

141-
## Step 4: Create a Headless Service for Cassandra
143+
## Step 5: Create a Headless Service for Cassandra
142144

143145
Create a Kubernetes manifest file in Cloud Shell to define the Cassandra headless service. Use a name like `cassandra-service.yaml`.
144146

@@ -163,7 +165,7 @@ EOF
163165
kubectl apply -f cassandra-service.yaml
164166
```
165167

166-
## Step 4: Verify Cassandra Deployment
168+
## Step 6: Verify Cassandra Deployment
167169

168170
Check the status of the Cassandra pods to ensure deployment is successful.
169171

@@ -213,7 +215,7 @@ NAME READY AGE
213215
cassandra 3/3 3m
214216
```
215217

216-
## Step 5: Access Cassandra Cluster
218+
## Step 7: Access Cassandra Cluster
217219

218220
Create a temporary Pod to access the Cassandra cluster using `cqlsh`, the Cassandra query tool.
219221

0 commit comments

Comments
 (0)