I have one cluster of kubernetes with 4 nodes and one master. I am trying to run 5 nginx modules in all nodes. Currently, sometimes the scheduler runs all containers on one machine, and sometimes on another machine.
What happens if my node goes down and all my containers work in the same node? We need to avoid this.
How to make the scheduler launch containers on nodes in a circular way, so if any node is omitted, then at least one node must have the NGINX module in working mode.
Is this possible or not? If possible, how can we achieve this scenario?
source share