Skip to main content

Manage Node Pools

Node pools allow you to manage groups of worker nodes within a Kubernetes cluster. This guide provides an overview of how to list, create, get, and delete node pools.

List Node Pools

Use the fluidctl kubernetes node-pools list command to list all node pools:

fluidctl kubernetes node-pools list

Create Node Pool

Use the fluidctl kubernetes node-pools create command to create a new node pool:

fluidctl kubernetes node-pools create --name <pool-name> --cluster <cluster-name> --type <instance-type> --count <count>
  • --name: The name of the node pool.
  • --cluster: The name of the cluster.
  • --type: The instance type for the nodes.
  • --count: Number of nodes in the pool.

Get Node Pool Details

Use the fluidctl kubernetes node-pools get command to get details for a specific node pool:

fluidctl kubernetes node-pools get --id <node-pool-id>

Delete Node Pool

Use the fluidctl kubernetes node-pools delete command to delete a node pool:

fluidctl kubernetes node-pools delete --id <node-pool-id>