Azure Kubernetes Service · Arazzo Workflow
Azure Kubernetes Service Add Node Pool and Poll
Version 1.0.0
Add a new agent (node) pool to an AKS cluster and poll until it finishes provisioning.
Provider
Workflows
add-node-pool-and-poll
Create an agent pool on a cluster and wait until it is provisioned.
Issues AgentPools_CreateOrUpdate and then loops on AgentPools_Get until provisioningState is Succeeded.
1
createNodePool
AgentPools_CreateOrUpdate
Submit an agent pool create-or-update. ARM wraps the pool configuration under a properties object and returns 201 Created for an asynchronous add.
2
pollNodePool
AgentPools_Get
Read the agent pool and inspect provisioningState. While the pool is still Creating the flow loops back to this step; once it reports Succeeded the workflow ends.