Skip to content

Commit 0a9d150

Browse files
committed
Resolving Nawaz's comments
1 parent ef84728 commit 0a9d150

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/book/src/developers/tilt-with-aks-as-mgmt-ilb.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ While the default Tilt setup recommends using a KIND cluster as the management c
2727
- Install the [Azure CLI](https://learn.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest)
2828
- A [supported version](https://github.com/kubernetes-sigs/cluster-api-provider-azure#compatibility) of [clusterctl](https://cluster-api.sigs.k8s.io/user/quick-start#install-clusterctl)
2929
- Basic understanding of Azure networking concepts, Cluster API, and CAPZ.
30-
- Go, Wget, and Tilt installed on your development machine.
30+
- `go`, `wget`, and `tilt` installed on your development machine.
3131
- If `tilt-settings.yaml` file exists in the root of your repo, clear out any values in `kustomize_settings` unless you want to use them instead of the values that will be set by running `make aks-create`.
3232

3333
### Managed Identity & Registry Setup
3434
1. Have a managed identity created from Azure Portal.
3535
2. Add the following lines to your shell config such as `~/.bashrc` or `~/.zshrc`
3636
```
37-
export USER_IDENTITY="<Managed Identity name>"
38-
export AZURE_CLIENT_ID_USER_ASSIGNED_IDENTITY="<your-client-id>"
37+
export USER_IDENTITY="<user-assigned-managed-identity-name>"
38+
export AZURE_CLIENT_ID_USER_ASSIGNED_IDENTITY="<user-assigned-managed-identity-client-id>"
3939
export AZURE_CLIENT_ID="${AZURE_CLIENT_ID_USER_ASSIGNED_IDENTITY}"
40-
export AZURE_OBJECT_ID_USER_ASSIGNED_IDENTITY="<your-object-id>"
41-
export AZURE_LOCATION="<your-azure-location>"
40+
export AZURE_OBJECT_ID_USER_ASSIGNED_IDENTITY="<user-assigned-managed-identity--object-id>"
41+
export AZURE_LOCATION="<azure-location-having-quota-for-B2s-and-D4s_v3-SKU>"
4242
export REGISTRY=<your-container-registry>
4343
```
4444
3. Be sure to reload with `source ~/.bashrc` or `source ~/.zshrc` and then verify the correct env vars values return with `echo $AZURE_CLIENT_ID` and `echo $REGISTRY`.
@@ -64,7 +64,7 @@ While the default Tilt setup recommends using a KIND cluster as the management c
6464
5. `make aks-create`
6565
- Run this target to bring up an AKS cluster.
6666
- Once the AKS cluster is created, you can reuse the cluster as many times as you like. Tilt ensures that the new image gets deployed every time there are changes in the Tiltfile and/or dependent files.
67-
- Running `make aks-create` cleans up any existing `aks_as_mgmt_settings`.
67+
- Running `make aks-create` cleans up any existing variables from `aks_as_mgmt_settings` from the `tilt-settings.yaml`.
6868
6. `make tilt-up`
6969
- Run this target to use underlying cluster being pointed by your `KUBECONFIG`.
7070

0 commit comments

Comments
 (0)