Skip to content

Commit 27b44e5

Browse files
committed
resolved Matt's comments
1 parent 67f8a6f commit 27b44e5

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

docs/book/src/getting-started-with-aks.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,28 @@
1313
- `Microsoft.ManagedIdentity`
1414
- `Microsoft.Authorization`
1515
- `Microsoft.ResourceHealth` (if the `EXP_AKS_RESOURCE_HEALTH` feature flag is enabled)
16-
- Install the [Azure CLI](https://learn.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest)
16+
- The [Azure CLI](https://learn.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest)
1717
- A [supported version](https://github.com/kubernetes-sigs/cluster-api-provider-azure#compatibility) of `clusterctl`
1818

1919
### Setting up your Azure environment
2020

2121
1. Login with the Azure CLI.
2222

23-
```bash
23+
```bash
2424
az login
25-
```
25+
```
2626

2727
2. List your Azure subscriptions.
2828

29-
```bash
29+
```bash
3030
az account list -o table
31-
```
31+
```
3232

3333
3. If more than one account is present, select the account that you want to use.
3434

35-
```bash
35+
```bash
3636
az account set -s <SubscriptionId>
37-
```
37+
```
3838

3939
4. Save your Subscription ID in an environment variable.
4040

@@ -61,7 +61,7 @@
6161
az aks get-credentials --resource-group <resource-group-name> --name <aks-cluster-name>
6262
```
6363

64-
3. Retrieve the OIDC Issuer URL and OIDC issuer URL.
64+
3. Retrieve the OIDC Issuer URL.
6565
```bash
6666
az aks show \
6767
--resource-group <resource-group-name> \
@@ -70,7 +70,7 @@
7070
```
7171
Hold onto the OIDC issuer URL for creating federated credentials.
7272

73-
4. Create a User Assigned Managed Identity (UAMI) to use for Workload Identity.
73+
4. Create a User-Assigned Managed Identity (UAMI) to use for Workload Identity.
7474
```bash
7575
az identity create \
7676
--name <uami-name> \
@@ -89,7 +89,7 @@
8989

9090
6. Add a Federated Credential to the UAMI
9191

92-
To configure the federated credential for the UAMI, follow the detailed instructions in the [Azure Workload Identity: Federated identity credential for an Azure AD application](https://azure.github.io/azure-workload-identity/docs/topics/federated-identity-credential.html#federated-identity-credential-for-a-user-assigned-managed-identity).
92+
To configure the federated credential for the UAMI, follow the detailed instructions in [Azure Workload Identity: Federated identity credential for an Azure AD application](https://azure.github.io/azure-workload-identity/docs/topics/federated-identity-credential.html#federated-identity-credential-for-a-user-assigned-managed-identity).
9393
For CAPZ, the federated credential should be configured for the capz-manager service account in the capz-system namespace, like the below:
9494
```bash
9595
az identity federated-credential create \
@@ -106,8 +106,8 @@ Run the following command to initialize the management cluster with Cluster API
106106

107107
`clusterctl init --infrastructure azure`
108108

109-
This command sets up the necessary components, including Cluster API Core, CAPZ, and Azure Service Operator (ASO), which is prebundled.
110-
View the [Cluster API Quick Start: Initialize the management cluster](https://cluster-api.sigs.k8s.io/user/quick-start.html) for more detailed instructions. Ensure you select the "Azure" tabs for Azure-specific guidance.
109+
This command sets up the necessary components, including Cluster API Core, CAPZ, and Azure Service Operator (ASO).
110+
View the [Cluster API Quick Start: Initialize the management cluster](https://cluster-api.sigs.k8s.io/user/quick-start.html) documentation for more detailed instructions. Ensure you select the "Azure" tabs for Azure-specific guidance.
111111

112112
7. Annotate the capz-manager service account in the capz-system namespace with the UAMI's clientId:
113113
```bash

0 commit comments

Comments
 (0)