Scaling a Vultr Kubernetes Engine (VKE) cluster involves adjusting the number of worker nodes to match fluctuating workload demands. This can be done by either adding new Node Pools to expand the cluster or resizing existing ones, ensuring the cluster can efficiently handle changing application requirements while maintaining optimal performance. Vultr Kubernetes Engine offers an intuitive process for scaling Node Pools based on the needs of your application.
Follow this guide to scale a node pool in your Vultr Kubernetes Engine cluster on your Vultr account using the Vultr Customer Portal, API, or CLI.
Send a GET
request to the List all Kubernetes Clusters endpoint and note the target VKE cluster's ID.
$ curl "https://api.vultr.com/v2/kubernetes/clusters" \
-X GET \
-H "Authorization: Bearer $VULTR_API_KEY"
Send a POST
request to the Create NodePool endpoint to add a new Node Pool to the VKE Cluster.
$ curl "https://api.vultr.com/v2/kubernetes/clusters/{cluster-id}/node-pools" \
-X POST \
-H "Authorization: Bearer ${VULTR_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"node_quantity": {number-of-nodes},
"min_nodes": {min-number-of-nodes},
"max_nodes": {max-number-of-nodes},
"auto_scaler": true,
"tag": "{tag}",
"label": "{node-label}",
"plan": "{node-plan}"
}'
Visit the Create NodePool page to view additional attributes you can apply while creating a new Node Pool for your VKE cluster.
Send a GET
request to the List NodePools endpoint to view all Node Pools and note the target Node Pool's ID.
$ curl "https://api.vultr.com/v2/kubernetes/clusters/{cluster-id}/node-pools" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Send a PATCH
request to the Update NodePool endpoint to resize the target Node Pool.
$ curl "https://api.vultr.com/v2/kubernetes/clusters/{cluster-id}/node-pools/{node-pool-id}" \
-X PATCH \
-H "Authorization: Bearer ${VULTR_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"node_quantity": {number-of-nodes},
"min_nodes": {min-number-of-nodes},
"max_nodes": {max-number-of-nodes},
"auto_scaler": true,
"tag": "{tag}"
}'
Visit the Update NodePool page to view additional attributes you can apply while resizing your Node Pool.
List the available VKE clusters in your Vultr account and note the target VKE cluster's ID.
$ vultr-cli kubernetes list --summarize
Add another Node Pool to the target VKE cluster.
$ vultr-cli kubernetes node-pool create <cluster-id> \
--label "<node-label>" \
--plan "<node-plan>" \
--quantity <number-of-nodes> \
--min-nodes <min-number-of-nodes> \
--max-nodes <max-number-of-nodes> \
--auto-scaler true \
--tag "<tag>"
Run vultr-cli kubernetes node-pool create --help
to view additional options you can apply while creating a new Node Pool for your VKE cluster.
List all the available Node Pools in the VKE cluster and note the target Node Pool's ID.
$ vultr-cli kubernetes node-pool list <cluster-id> --summarize
Resize the target Node Pool.
$ vultr-cli kubernetes node-pool update <cluster-id> <node-pool-id> \
--quantity <number-of-nodes> \
--min-nodes <min-number-of-nodes> \
--max-nodes <max-number-of-nodes> \
--auto-scaler true \
--tag "<tag>" \
--node-labels "<key1=value1,key2=value2>"
Run vultr-cli kubernetes node-pool update --help
to view additional options you can apply while resizing your Node Pool.
No comments yet.