Statefulsets running in K8s cluster as below:
Node 1: app-0 Node 2: app-1 Node 3: app-2
When new node added to cluster, how to ensure new pod (app-4) will be spawned in the new node ?
Deploying using helm(not using operator)
Statefulsets running in K8s cluster as below:
Node 1: app-0 Node 2: app-1 Node 3: app-2
When new node added to cluster, how to ensure new pod (app-4) will be spawned in the new node ?
Deploying using helm(not using operator)
I would suggest using a combination of Node Affinity & Horizontal Pod Autoscaler for this use-case.