HOTSPOT -
You have an Azure subscription that contains an Azure Kubernetes Service (AKS) cluster
named Cluster1. Cluster1 hosts a node pool named Pool1 that has four nodes.
You need to perform a coordinated upgrade of Cluster1. The solution must meet the
following requirements:
- Deploy two new nodes to perform the upgrade.
- Minimize costs.
How should you complete the command? To answer, select the appropriate options in the
answer area.
NOTE: Each correct selection is worth one point.

Why not node-count in Box 2? I think -max-surge 2 is the better pick since it just adds the two nodes temporarily for the upgrade. Node-count would increase total pool size, which isn’t what they want here. Anyone disagree?
Yeah, "updates" and "-max-surge 2" make sense here. The -max-surge parameter is specifically for controlling how many extra nodes are brought in temporarily during the upgrade, so setting it to 2 matches the requirement. I think this would also help keep costs down since you’re not over-provisioning. Anyone read it differently?
Pretty sure it's updates and -max-surge 2. The max-surge flag adds temp nodes for rolling upgrades, so that matches the two extra node requirement. Saw something similar in practice sets. Anyone disagree?
