Good day, does kubernetes StatefulSet
has an option for set concrete Pod to concrete Node.
For example: we have StatefulSet
that contained 3 replicas of Pod
's with unique labels (app-0
, app-1
, app-2
) and 3 Node
's with labels (node-0
, node-1
, node-2
). How to point on Pod from StatefulSet
with label app-0
to node with label node-0
? In official documentation of StatefulSet, PodAffinity and NodeAffifnity i dont find any information how to do this.
Any suggestions