A workload may require splitting a cluster’s nodes into separate pools for logical isolation. This isolation can be supported with separate subnets dedicated to each node pool in the cluster. This can address requirements such as having non-contiguous virtual network address space to split across node pools.
To create a node pool with a dedicated subnet, pass the subnet resource ID as an additional parameter when creating a node pool.
az aks nodepool add \
--resource-group myResourceGroup \
--cluster-name myAKSCluster \
--name mynodepool \
--node-count 3 \
--vnet-subnet-id <YOUR_SUBNET_RESOURCE_ID>
In this article, I will share with you a new AKS feature: Cluster Extension.
Cluster extensions provides an Azure Resource Manager driven experience for installation and lifecycle management of services like Azure Machine Learning (ML) on an AKS cluster. This feature enables:
Azure Resource Manager-based deployment of extensions, including at-scale deployments across AKS clusters.
Lifecycle management of the extension (Update, Delete) from Azure Resource Manager.
Dapr is a portable, event-driven runtime that makes it easy for any developer to build resilient, stateless and stateful applications that run on cloud and edge.