Worker Nodes
In the Resources tab, you can view information about worker node groups.
Each node group contains only nodes with the same configuration. The configuration of each node is shown in its node group row.
When you expand a worker node group, you can view the local and external IP addresses of each node, as well as its creation date.

Node Groups Copy link
You can add nodes to a group, configure group settings, and remove nodes.
Add a Node Group Copy link
- Go to the Kubernetes section and select a cluster.
- Open the Resources tab.
- Click Add groups.
- Configure the group parameters:
- Set a name or use the default one
- Select the number and configuration of nodes
- (Optional) Enable autoscaling
- (Optional) Enable autohealing
- (Optional) Add labels and taints using the following formats:
- label:
key:value - taint:
key:value:effect
- label:
- If you need multiple groups, click +Add group and configure them separately.
- Click Add to confirm.
Add Nodes to a Group Copy link
- Go to the Kubernetes section and select a cluster.
- Open the Resources tab.
- Click on the three dots next to the node group and select Add nodes.

- Select the number of nodes.
- (Optional) Add labels and taints using the following formats:
- label:
key:value - taint:
key:value:effect
- label:
- Click Add.

Configure a Node Group Copy link
- Go to the Kubernetes section and select a cluster.
- Open the Resources tab.
- Click on the three dots next to the node group and select Edit group.

- Update the settings:
- Change the group name
- Enable or disable autoscaling
- Enable or disable autohealing
- Add or remove labels and taints using the following formats:
- label:
key:value - taint:
key:value:effect
- label:
- Click Save.
Remove a Node Group Copy link
- Go to the Kubernetes section and select a cluster.
- Open the Resources tab.
- Click on the three dots next to the node group and select Delete group.
- Confirm the action.

Nodes Copy link
You can manage individual nodes within a node group.
Restart a Node Copy link
- Go to the Kubernetes section and select a cluster.
- In the Resources tab, expand the node group.
- Click on the three dots next to the node and select Reboot node.
- Confirm the action.

Configure a Node Copy link
You can add or remove labels and taints:
- Go to the Kubernetes section and select a cluster.
- In the Resources tab, expand the node group.
- Click on the three dots and select Edit node.

- Add or remove labels and taints using the following formats:
- label:
key:value - taint:
key:value:effect
- label:
- Click Save.
Remove a Node Copy link
- Go to the Kubernetes section and select a cluster.
- In the Resources tab, expand the node group.
- Click on the three dots next to the node and select Delete node.
- Confirm deletion.

Taint Effects Copy link
When adding a taint to a node or node group, you must select a taint effect.
The effect defines how the scheduler places pods on nodes:
NoSchedule: new pods are not scheduled on the node unless they have a matchingtoleration.PreferNoSchedule: the scheduler avoids placing pods on the node when possible.NoExecute: pods without a matchingtolerationare not scheduled on the node and are evicted if already running.