June 2020
Intermediate to advanced
432 pages
11h 57m
English
Alongside scaling pods, Kubernetes can also scale the number of nodes that run within the Kubernetes cluster. The number of nodes can be scaled using the following commands:
az aks show --resource-group mpn-rg-kubernetes --name mykubernetescluster --query agentPoolProfiles
az aks scale --resource-group mpn-rg-kubernetes --name mykubernetescluster --node-count 2 --nodepool-name nodepool1
Scaling the number of nodes up can increase the performance drastically. This will also make the cluster more expensive. By ...
Read now
Unlock full access