You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/book/src/developers/tilt-with-aks-as-mgmt-ilb.md
+16-13Lines changed: 16 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -139,6 +139,11 @@ Building upon the [challenges and solutions](#challenges-and-solutions) from abo
139
139
140
140
- The below steps for self-managed templates only. Does not apply to AKS workload clusters.
141
141
142
+
- The below steps are for running the tests in a intuned device. If you are going to run the local tests from a dev machine in Azure, you have to first follow below steps and then proceed ahead.
143
+
1. Create a managed Identity
144
+
2. Assign that managed identity a contributor role to your subscription
145
+
3. Set `AZURE_CLIENT_ID_USER_ASSIGNED_IDENTITY`, `AZURE_OBJECT_ID_USER_ASSIGNED_IDENTITY`, `AZURE_USER_ASSIGNED_IDENTITY_RESOURCE_ID` to the user assigned managed identity.
146
+
142
147
#### Update prow template with apiserver ILB networking solution
143
148
144
149
There are three sections of a prow template that needs an update.
@@ -183,7 +188,7 @@ A Sample kustomize command updating a prow template via its kustomization.yaml i
183
188
path: /spec/networkSpec/vnet/cidrBlocks
184
189
value: []
185
190
- op: add
186
-
path: /spec/networkSpec/vnet/cidrBlocks/0
191
+
path: /spec/networkSpec/vnet/cidrBlocks/-
187
192
value: ${AZURE_VNET_CIDR}
188
193
- target:
189
194
kind: AzureCluster
@@ -192,7 +197,7 @@ A Sample kustomize command updating a prow template via its kustomization.yaml i
192
197
path: /spec/networkSpec/subnets/0/cidrBlocks
193
198
value: []
194
199
- op: add
195
-
path: /spec/networkSpec/subnets/0/cidrBlocks/0
200
+
path: /spec/networkSpec/subnets/0/cidrBlocks/-
196
201
value: ${AZURE_CP_SUBNET_CIDR}
197
202
- target:
198
203
kind: AzureCluster
@@ -201,29 +206,26 @@ A Sample kustomize command updating a prow template via its kustomization.yaml i
0 commit comments