Skip to content

Latest commit

 

History

History
30 lines (17 loc) · 1.24 KB

05-change-node-pool.md

File metadata and controls

30 lines (17 loc) · 1.24 KB

5. Change node pool

Modify a node pool within your cluster. You can do this from the Console.

Tasks

  • Switch the node pool "database" type from t3.medium to t3.large.
  • Observe the replacement of nodes within your cluster. What happens when a node is being replaced?
  • Add a label to your node pool.

References

Modifying node type

Changing the node type within a pool results in a full node pool replacement. Any missing nodes will first be provisioned before replacing existing nodes, similarly to how the scaling up works, if you modify both the node type and count within the same action.

Node Labels/Annotations

Labels and annotations will not result in a node replacement and will be configured within a couple of minutes on each node within a pool. Be careful with modifying existing labels when using these for affinity rules within Kubernetes, as this could result in pods being moved around the cluster.

Labels starting with the following suffix cannot be configured:

  • k8s.avisi.cloud
  • kubernetes.io

Next assignment

06. Connect to application