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
Execute clusterctl to template the resources, then apply to your kind management cluster:
58
74
59
75
```bash
60
76
clusterctl init --infrastructure azure
@@ -196,7 +212,7 @@ spec:
196
212
resourceGroup: test-rg
197
213
subnet:
198
214
cidrBlock: 10.0.2.0/24
199
-
name: test-subnet
215
+
name: test-subnet
200
216
```
201
217
### Multitenancy
202
218
@@ -246,7 +262,7 @@ spec:
246
262
### AKS Managed Azure Active Directory Integration
247
263
248
264
Azure Kubernetes Service can be configured to use Azure Active Directory for user authentication.
249
-
AAD for managed clusters can be configured by enabling the `managed` spec in `AzureManagedControlPlane` to `true`
265
+
AAD for managed clusters can be configured by enabling the `managed` spec in `AzureManagedControlPlane` to `true`
250
266
and by providing Azure AD GroupObjectId in `AdminGroupObjectIDs` array. The group is needed as admin group for
251
267
the cluster to grant cluster admin permissions. You can use an existing Azure AD group, or create a new one. For more documentation about AAD refer [AKS AAD Docs](https://docs.microsoft.com/en-us/azure/aks/managed-aad)
252
268
@@ -301,7 +317,7 @@ spec:
301
317
osDiskSizeGB: 512
302
318
sku: Standard_D2s_v3
303
319
nodeLabels:
304
-
dedicated: kafka
320
+
dedicated: kafka
305
321
```
306
322
307
323
### AKS Node Pool MaxPods configuration
@@ -381,12 +397,12 @@ spec:
381
397
382
398
383
399
### Enable AKS features with custom headers (--aks-custom-headers)
384
-
To enable some AKS cluster / node pool features you need to pass special headers to the cluster / node pool create request.
400
+
To enable some AKS cluster / node pool features you need to pass special headers to the cluster / node pool create request.
385
401
For example, to [add a node pool for GPU nodes](https://docs.microsoft.com/en-us/azure/aks/gpu-cluster#add-a-node-pool-for-gpu-nodes),
386
-
you need to pass a custom header `UseGPUDedicatedVHD=true` (with `--aks-custom-headers UseGPUDedicatedVHD=true` argument).
387
-
To do this with CAPZ, you need to add special annotations to AzureManagedCluster (for cluster
388
-
features) or AzureManagedMachinePool (for node pool features). These annotations should have a prefix `infrastructure.cluster.x-k8s.io/custom-header-` followed
389
-
by the name of the AKS feature. For example, to create a node pool with GPU support, you would add the following
402
+
you need to pass a custom header `UseGPUDedicatedVHD=true` (with `--aks-custom-headers UseGPUDedicatedVHD=true` argument).
403
+
To do this with CAPZ, you need to add special annotations to AzureManagedCluster (for cluster
404
+
features) or AzureManagedMachinePool (for node pool features). These annotations should have a prefix `infrastructure.cluster.x-k8s.io/custom-header-` followed
405
+
by the name of the AKS feature. For example, to create a node pool with GPU support, you would add the following
0 commit comments