Skip to content

Commit f52687c

Browse files
authored
minor updates
1 parent f24371a commit f52687c

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

platform/install/environments/azure.mdx

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Deploy vCluster Platform on Azure using AKS
3-
sidebar_label: Azure
3+
sidebar_label: AKS
44
sidebar_position: 4
55
description: Learn how to deploy and configure vCluster Platform on Azure with AKS.
66
---
@@ -27,20 +27,22 @@ This guide provides instructions for deploying the platform on Azure using [Azur
2727

2828
Ensure you have the following:
2929
<BasePrerequisites />
30+
3031
- vCluster CLI installed: <InstallCli />
3132
- [Azure CLI (`az`)](https://learn.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest) installed.
33+
3234
:::note
3335
Ensure you have the necessary permissions to create clusters and manage Azure services.
3436
:::
3537

36-
## Create a AKS cluster
38+
## Create an AKS cluster
3739

38-
<Flow id="create-gke-cluster">
40+
<Flow id="create-aks-cluster">
3941

4042
<Step>
4143
Prepare the environment.
4244

43-
Start by creating an AKS cluster using the `az` CLI. Set up your environment variables:
45+
Create an AKS cluster using the `az` CLI. Set up your environment variables:
4446

4547
<InterpolatedCodeBlock
4648
code={`export RESOURCE_GROUP_NAME=[[VAR:RESOURCE_GROUP_NAME:vcluster-demo-ResourceGroup]]
@@ -64,12 +66,12 @@ export DNS_LABEL=[[VAR:DNS_LABEL:vcluster-demo-dns]]
6466
</Step>
6567

6668
<Step>
67-
Create the cluster.
69+
Create the cluster:
6870

6971
<InterpolatedCodeBlock
7072
code={`az aks create --resource-group $RESOURCE_GROUP_NAME --name $CLUSTER_NAME --node-count 2`}
7173
language="bash"
72-
title="Create AKS cluster"
74+
title="Create an AKS cluster"
7375
/>
7476

7577
:::info
@@ -82,7 +84,7 @@ region with two nodes.
8284
</Step>
8385

8486
<Step>
85-
Download the Kubeconfig file for the new cluster:
87+
Download the kubeconfig file for the new cluster:
8688

8789
<InterpolatedCodeBlock
8890
code={`az aks get-credentials --resource-group $RESOURCE_GROUP_NAME --name $CLUSTER_NAME`}
@@ -124,7 +126,7 @@ After the AKS cluster is running, deploy the platform.
124126

125127
:::note idempotency
126128
The following command is _idempotent_, meaning that running it again does
127-
not result it creating another cluster with the same name.
129+
not result in creating another cluster with the same name.
128130
:::
129131

130132
```bash title="Deploy the platform using vCluster CLI
@@ -189,7 +191,7 @@ You can _optionally_ perform additional configuration steps:
189191
</Step>
190192
</Flow>
191193

192-
### Expose the platform UI using load balancer {#load-balancer}
194+
### Expose the platform UI using LoadBalancer {#load-balancer}
193195

194196
<Flow>
195197
<Step>
@@ -262,7 +264,7 @@ vcluster platform start --host=vcluster-platform.yourdomain.tld
262264
```
263265

264266
:::info
265-
For more information on how to configure a custom domain, see the [Configure external acess and TLS documentation](/platform/configure/domain).
267+
For more information on how to configure a custom domain, see the [Configure external access and TLS documentation](/platform/configure/domain).
266268
:::
267269

268270
</Step>
@@ -272,12 +274,11 @@ For more information on how to configure a custom domain, see the [Configure ext
272274

273275
<InstallNextSteps />
274276

275-
You can also use Google as an identity provider and [configure SSO](/platform/configure/single-sign-on/providers/google) to enable user
276-
authentication to the platform.
277+
You can also use Google as an identity provider and [configure SSO](/platform/configure/single-sign-on/providers/google) to enable user authentication to the platform.
277278

278-
## Cleanup
279+
## Clean up resources
279280

280-
If you deployed the AKS cluster with this tutorial, and want to clean up the resources, run the
281+
If you deployed the AKS cluster using this guide, and want to clean up the resources, run the
281282
following command:
282283

283284
```bash title="Clean up resources"

0 commit comments

Comments
 (0)